Class Example
java.lang.Object
br.net.dd.netherwingcore.common.configuration.fields.Field
br.net.dd.netherwingcore.common.configuration.fields.Example
Represents an example configuration field in the system.
This class is a specialization of the Field class. It allows the creation
of a generic field by passing one or more string values during instantiation.
It serves as a base example and can be extended or used directly
to represent configuration fields with string values.
Usage:
Example exampleField = new Example("value1", "value2");
- See Also:
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Example
Constructs an instance of theExampleclass with the given string values.- Parameters:
value- One or more string values associated with this field.
-