Class Detail
java.lang.Object
br.net.dd.netherwingcore.common.configuration.fields.Field
br.net.dd.netherwingcore.common.configuration.fields.Detail
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.
Detail detail = new Detail("exampleValue1", "exampleValue2");
- See Also:
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Detail
Constructs a newDetailinstance with the specified values.- Parameters:
value- one or more string values representing this detail's configuration.
-