public static enum ConfigRegistry.EntryType extends java.lang.Enum<ConfigRegistry.EntryType>
Enum Constant and Description |
---|
BOOLEAN |
COLOR |
CUSTOM |
DOUBLE |
FILE |
FLOAT |
FOLDER |
INTEGER |
LIST |
LONG |
MAP |
OPTIONS |
STRING |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<?> |
getEntryClass() |
static ConfigRegistry.EntryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConfigRegistry.EntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigRegistry.EntryType INTEGER
public static final ConfigRegistry.EntryType FLOAT
public static final ConfigRegistry.EntryType DOUBLE
public static final ConfigRegistry.EntryType LONG
public static final ConfigRegistry.EntryType BOOLEAN
public static final ConfigRegistry.EntryType STRING
public static final ConfigRegistry.EntryType CUSTOM
public static final ConfigRegistry.EntryType FILE
public static final ConfigRegistry.EntryType FOLDER
public static final ConfigRegistry.EntryType OPTIONS
public static final ConfigRegistry.EntryType COLOR
public static final ConfigRegistry.EntryType MAP
public static final ConfigRegistry.EntryType LIST
public static ConfigRegistry.EntryType[] values()
for (ConfigRegistry.EntryType c : ConfigRegistry.EntryType.values()) System.out.println(c);
public static ConfigRegistry.EntryType 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 nullpublic java.lang.Class<?> getEntryClass()