public enum SettingNames extends Enum<SettingNames>
Enum Constant and Description |
---|
AUTO_LOGON
Enum value AutoLogon.
|
FIRST_LOGON_COMMANDS
Enum value FirstLogonCommands.
|
Modifier and Type | Method and Description |
---|---|
static SettingNames |
fromString(String value)
Parses a serialized value to a SettingNames instance.
|
String |
toString() |
static SettingNames |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SettingNames[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SettingNames AUTO_LOGON
public static final SettingNames FIRST_LOGON_COMMANDS
public static SettingNames[] values()
for (SettingNames c : SettingNames.values()) System.out.println(c);
public static SettingNames 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 nullpublic static SettingNames fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<SettingNames>
Copyright © 2019. All rights reserved.