public enum SeekGroup extends Enum<SeekGroup>
| Enum Constant and Description |
|---|
CHILD_CRITICAL |
CHILD_HORIZON |
CHILD_OVERLOOK |
CRITICAL |
EXTEND_CRITICAL |
EXTEND_HORIZON |
EXTEND_OVERLOOK |
HORIZON |
INHERIT_CRITICAL |
INHERIT_HORIZON |
INHERIT_OVERLOOK |
OVERLOOK |
PARENT_CRITICAL |
PARENT_HORIZON |
PARENT_OVERLOOK |
| Modifier and Type | Method and Description |
|---|---|
static SeekGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeekGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeekGroup HORIZON
public static final SeekGroup CRITICAL
public static final SeekGroup OVERLOOK
public static final SeekGroup PARENT_HORIZON
public static final SeekGroup PARENT_CRITICAL
public static final SeekGroup PARENT_OVERLOOK
public static final SeekGroup CHILD_HORIZON
public static final SeekGroup CHILD_CRITICAL
public static final SeekGroup CHILD_OVERLOOK
public static final SeekGroup INHERIT_HORIZON
public static final SeekGroup INHERIT_CRITICAL
public static final SeekGroup INHERIT_OVERLOOK
public static final SeekGroup EXTEND_HORIZON
public static final SeekGroup EXTEND_CRITICAL
public static final SeekGroup EXTEND_OVERLOOK
public static SeekGroup[] values()
for (SeekGroup c : SeekGroup.values()) System.out.println(c);
public static SeekGroup 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 © 2020. All rights reserved.