public static enum EnumRenderer.ExampleEnum extends Enum<EnumRenderer.ExampleEnum>
| Enum Constant and Description |
|---|
GENERIC_OPTION_1 |
GENERIC_OPTION_2 |
GENERIC_OPTION_3 |
| Modifier and Type | Method and Description |
|---|---|
static EnumRenderer.ExampleEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumRenderer.ExampleEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumRenderer.ExampleEnum GENERIC_OPTION_1
public static final EnumRenderer.ExampleEnum GENERIC_OPTION_2
public static final EnumRenderer.ExampleEnum GENERIC_OPTION_3
public static EnumRenderer.ExampleEnum[] values()
for (EnumRenderer.ExampleEnum c : EnumRenderer.ExampleEnum.values()) System.out.println(c);
public static EnumRenderer.ExampleEnum 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 © 2011–2015 SWM. All rights reserved.