public static enum ConfigSettings.SettingType extends Enum<ConfigSettings.SettingType>
Modifier and Type | Method and Description |
---|---|
static ConfigSettings.SettingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigSettings.SettingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigSettings.SettingType STRING
public static final ConfigSettings.SettingType INT
public static final ConfigSettings.SettingType DOUBLE
public static final ConfigSettings.SettingType BOOLEAN
public static ConfigSettings.SettingType[] values()
for (ConfigSettings.SettingType c : ConfigSettings.SettingType.values()) System.out.println(c);
public static ConfigSettings.SettingType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023. All rights reserved.