public static enum CoreSection.End extends Enum<CoreSection.End>
Enum Constant and Description |
---|
BOTTOM
The bottom of a core section
|
TOP
The top of a core section
|
Modifier and Type | Method and Description |
---|---|
static CoreSection.End |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoreSection.End[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreSection.End TOP
public static final CoreSection.End BOTTOM
public static CoreSection.End[] values()
for (CoreSection.End c : CoreSection.End.values()) System.out.println(c);
public static CoreSection.End 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 © 2022. All rights reserved.