Class Detail

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

public class Detail extends Field
Represents a specific type of Field, called "Detail", which encapsulates one or more values. This class acts as a detailed configuration option within the system.

The Detail class is a specialization of the Field class, inheriting its ability to store string values and providing a constructor for initialization. Instances of this class are intended to represent configuration fields that require detailed or additional context.

Example:
    Detail detail = new Detail("exampleValue1", "exampleValue2");
See Also:
  • Constructor Details

    • Detail

      public Detail(String... value)
      Constructs a new Detail instance with the specified values.
      Parameters:
      value - one or more string values representing this detail's configuration.