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