public static enum TestEntity.TestEnum extends Enum<TestEntity.TestEnum>
| Modifier and Type | Method and Description |
|---|---|
static TestEntity.TestEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestEntity.TestEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestEntity.TestEnum A
public static final TestEntity.TestEnum B
public static final TestEntity.TestEnum C
public static TestEntity.TestEnum[] values()
for (TestEntity.TestEnum c : TestEntity.TestEnum.values()) System.out.println(c);
public static TestEntity.TestEnum 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 © 2017 Open Circle Solutions. All rights reserved.