public static enum ObjectQ.Scope extends java.lang.Enum<ObjectQ.Scope>
Enum Constant and Description |
---|
BASE_ONLY |
BASE_TO_LEVEL2 |
BASE_TO_LEVEL3 |
BASE_TO_LEVEL4 |
BASE_TO_LEVEL5 |
LEVEL2_ONLY |
LEVEL3_ONLY |
LEVEL4_ONLY |
LEVEL5_ONLY |
NONE |
WHOLE_TREE |
Modifier and Type | Method and Description |
---|---|
static ObjectQ.Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectQ.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectQ.Scope BASE_ONLY
public static final ObjectQ.Scope BASE_TO_LEVEL2
public static final ObjectQ.Scope BASE_TO_LEVEL3
public static final ObjectQ.Scope BASE_TO_LEVEL4
public static final ObjectQ.Scope BASE_TO_LEVEL5
public static final ObjectQ.Scope LEVEL2_ONLY
public static final ObjectQ.Scope LEVEL3_ONLY
public static final ObjectQ.Scope LEVEL4_ONLY
public static final ObjectQ.Scope LEVEL5_ONLY
public static final ObjectQ.Scope NONE
public static final ObjectQ.Scope WHOLE_TREE
public static ObjectQ.Scope valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ObjectQ.Scope[] values()
for (ObjectQ.Scope c : ObjectQ.Scope.values()) System.out.println(c);