public enum PacVisionValues extends java.lang.Enum<PacVisionValues>
| Enum Constant and Description |
|---|
_CONTEXT_ONLY |
_LOWER_HIERARCHY |
_UPPER_HIERARCHY |
_WHOLE_HIERARCHY |
| Modifier and Type | Method and Description |
|---|---|
static PacVisionValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PacVisionValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PacVisionValues _CONTEXT_ONLY
public static final PacVisionValues _LOWER_HIERARCHY
public static final PacVisionValues _UPPER_HIERARCHY
public static final PacVisionValues _WHOLE_HIERARCHY
public static PacVisionValues 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 PacVisionValues[] values()
for (PacVisionValues c : PacVisionValues.values()) System.out.println(c);