public static enum DotNode.DereferenceType extends Enum<DotNode.DereferenceType>
Enum Constant and Description |
---|
COLLECTION |
COMPONENT |
ENTITY |
IDENTIFIER |
JAVA_CONSTANT |
PRIMITIVE |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static DotNode.DereferenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DotNode.DereferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DotNode.DereferenceType UNKNOWN
public static final DotNode.DereferenceType ENTITY
public static final DotNode.DereferenceType COMPONENT
public static final DotNode.DereferenceType COLLECTION
public static final DotNode.DereferenceType PRIMITIVE
public static final DotNode.DereferenceType IDENTIFIER
public static final DotNode.DereferenceType JAVA_CONSTANT
public static DotNode.DereferenceType[] values()
for (DotNode.DereferenceType c : DotNode.DereferenceType.values()) System.out.println(c);
public static DotNode.DereferenceType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2001-2015 Red Hat, Inc. All Rights Reserved.