Enum ConfigurationEntryValueType
- java.lang.Object
-
- java.lang.Enum<ConfigurationEntryValueType>
-
- app.nzyme.plugin.rest.configuration.ConfigurationEntryValueType
-
- All Implemented Interfaces:
Serializable,Comparable<ConfigurationEntryValueType>
public enum ConfigurationEntryValueType extends Enum<ConfigurationEntryValueType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEANENUM_STRINGSNUMBERSTRINGSTRING_ENCRYPTED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConfigurationEntryValueTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ConfigurationEntryValueType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final ConfigurationEntryValueType STRING
-
STRING_ENCRYPTED
public static final ConfigurationEntryValueType STRING_ENCRYPTED
-
NUMBER
public static final ConfigurationEntryValueType NUMBER
-
BOOLEAN
public static final ConfigurationEntryValueType BOOLEAN
-
ENUM_STRINGS
public static final ConfigurationEntryValueType ENUM_STRINGS
-
-
Method Detail
-
values
public static ConfigurationEntryValueType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConfigurationEntryValueType c : ConfigurationEntryValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigurationEntryValueType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-