Enum CometFindStatement.Hierarchy
- java.lang.Object
-
- java.lang.Enum<CometFindStatement.Hierarchy>
-
- com.priint.pubserver.comet.bridge.CometFindStatement.Hierarchy
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometFindStatement.Hierarchy>
- Enclosing class:
- CometFindStatement
public static enum CometFindStatement.Hierarchy extends java.lang.Enum<CometFindStatement.Hierarchy>
Enumeration for hierarchy
Depending on the hierarchy, sub nodes will show all descendants (BUCKET) or only planned descendants (PLANNING).
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetIdentifier()Gets identifier.static CometFindStatement.HierarchyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometFindStatement.Hierarchy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUCKET
public static final CometFindStatement.Hierarchy BUCKET
Show all descendants
-
PLANNING
public static final CometFindStatement.Hierarchy PLANNING
Show planned descendants
-
-
Method Detail
-
values
public static CometFindStatement.Hierarchy[] 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 (CometFindStatement.Hierarchy c : CometFindStatement.Hierarchy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CometFindStatement.Hierarchy valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getIdentifier
public java.lang.String getIdentifier()
Gets identifier.- Returns:
- the identifier
-
-