public static enum IniDefinition.Type extends java.lang.Enum<IniDefinition.Type>
Modifier and Type | Method and Description |
---|---|
static IniDefinition.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IniDefinition.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IniDefinition.Type BOOLEAN
public static final IniDefinition.Type STRING
public static final IniDefinition.Type LONG
public static final IniDefinition.Type ARRAY
public static IniDefinition.Type[] values()
for (IniDefinition.Type c : IniDefinition.Type.values()) System.out.println(c);
public static IniDefinition.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null