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