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