Class Example

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

public class Example extends Field
Represents an example configuration field in the system.

This class is a specialization of the Field class. It allows the creation of a generic field by passing one or more string values during instantiation. It serves as a base example and can be extended or used directly to represent configuration fields with string values.

Usage:

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

    • Example

      public Example(String... value)
      Constructs an instance of the Example class with the given string values.
      Parameters:
      value - One or more string values associated with this field.