Package io.vertx.tp.rbac.cv.em
Enum SeekGroup
- java.lang.Object
-
- java.lang.Enum<SeekGroup>
-
- io.vertx.tp.rbac.cv.em.SeekGroup
-
- All Implemented Interfaces:
Serializable,Comparable<SeekGroup>
public enum SeekGroup extends Enum<SeekGroup>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHILD_CRITICALCHILD_HORIZONCHILD_OVERLOOKCRITICALEXTEND_CRITICALEXTEND_HORIZONEXTEND_OVERLOOKHORIZONINHERIT_CRITICALINHERIT_HORIZONINHERIT_OVERLOOKOVERLOOKPARENT_CRITICALPARENT_HORIZONPARENT_OVERLOOK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SeekGroupvalueOf(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.
-
-
-
Enum Constant Detail
-
HORIZON
public static final SeekGroup HORIZON
-
CRITICAL
public static final SeekGroup CRITICAL
-
OVERLOOK
public static final SeekGroup OVERLOOK
-
PARENT_HORIZON
public static final SeekGroup PARENT_HORIZON
-
PARENT_CRITICAL
public static final SeekGroup PARENT_CRITICAL
-
PARENT_OVERLOOK
public static final SeekGroup PARENT_OVERLOOK
-
CHILD_HORIZON
public static final SeekGroup CHILD_HORIZON
-
CHILD_CRITICAL
public static final SeekGroup CHILD_CRITICAL
-
CHILD_OVERLOOK
public static final SeekGroup CHILD_OVERLOOK
-
INHERIT_HORIZON
public static final SeekGroup INHERIT_HORIZON
-
INHERIT_CRITICAL
public static final SeekGroup INHERIT_CRITICAL
-
INHERIT_OVERLOOK
public static final SeekGroup INHERIT_OVERLOOK
-
EXTEND_HORIZON
public static final SeekGroup EXTEND_HORIZON
-
EXTEND_CRITICAL
public static final SeekGroup EXTEND_CRITICAL
-
EXTEND_OVERLOOK
public static final SeekGroup EXTEND_OVERLOOK
-
-
Method Detail
-
values
public static SeekGroup[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SeekGroup c : SeekGroup.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SeekGroup valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-