Class DefaultValue

java.lang.Object
br.net.dd.netherwingcore.common.configuration.fields.Field
br.net.dd.netherwingcore.common.configuration.fields.DefaultValue

public class DefaultValue extends Field
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.

Example Usage:
DefaultValue defaultValue = new DefaultValue("value1", "value2");
See Also:
  • Constructor Details

    • DefaultValue

      public DefaultValue(String... value)
      Constructs a DefaultValue instance 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.