Class Format
java.lang.Object
br.net.dd.netherwingcore.common.configuration.fields.Field
br.net.dd.netherwingcore.common.configuration.fields.Format
The
Format class represents a specific type of configuration field
that accepts one or more string values.
This class extends the Field class, inheriting its behavior
and adding its own specialized functionality for handling format configurations.
Use this class when you need to define a configuration field that expects a format-related value(s). The format values are passed as strings during the instantiation.
Example usage:
Format formatField = new Format("value1", "value2");
- See Also:
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Format
Constructs aFormatobject with the specified values.- Parameters:
value- one or more string values to define the format configuration field.
-