public enum WidgetState extends Enum<WidgetState>
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static WidgetState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WidgetState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WidgetState DEFAULT
public static final WidgetState SHADED
public static WidgetState[] values()
for (WidgetState c : WidgetState.values()) System.out.println(c);
public static WidgetState 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 String getName()
Copyright © 2011 Nuxeo SA. All Rights Reserved.