Class DefaultValue
java.lang.Object
br.net.dd.netherwingcore.common.configuration.fields.Field
br.net.dd.netherwingcore.common.configuration.fields.DefaultValue
Represents a default value in the configuration system.
This class extends the Field class, indicating that it is a specialized type of configuration field
that represents one or more default values. It allows the specification of default values for associated
fields in the configuration.
The DefaultValue constructor accepts one or more string values, which are passed to the superclass
Field. These values can be used to specify default configuration values in the system. This class
ensures that default values are treated uniformly throughout the configuration process.
DefaultValue defaultValue = new DefaultValue("value1", "value2");
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefaultValue(String... value) Constructs aDefaultValueinstance with the given values. -
Method Summary
-
Constructor Details
-
DefaultValue
Constructs aDefaultValueinstance with the given values.- Parameters:
value- One or more default values to be associated with this field. These values will be passed to the superclass constructor.
-