public enum ResourceVisitorDepth extends java.lang.Enum<ResourceVisitorDepth> implements IntegralConstant
IResource
Enum Constant and Description |
---|
DEPTH_INFINITE |
DEPTH_ONE |
DEPTH_ZERO |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ResourceVisitorDepth |
valueOf(int value) |
static ResourceVisitorDepth |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResourceVisitorDepth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static java.util.Set<java.lang.Integer> |
valuesAsIntegers() |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
equals
public static final ResourceVisitorDepth DEPTH_ZERO
IResource.DEPTH_ZERO
public static final ResourceVisitorDepth DEPTH_ONE
IResource.DEPTH_ONE
public static final ResourceVisitorDepth DEPTH_INFINITE
IResource.DEPTH_INFINITE
public static ResourceVisitorDepth[] values()
for (ResourceVisitorDepth c : ResourceVisitorDepth.values()) System.out.println(c);
public static ResourceVisitorDepth 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 java.util.Set<java.lang.Integer> valuesAsIntegers()
public static ResourceVisitorDepth valueOf(int value)
public int getValue()
getValue
in interface IntegralConstant