public enum RbfNodeType extends Enum<RbfNodeType> implements NodeType
Enum Constant and Description |
---|
FIELD
node type for fields.
|
RECORD
node type for records.
|
Modifier and Type | Method and Description |
---|---|
static RbfNodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RbfNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RbfNodeType FIELD
public static final RbfNodeType RECORD
public static RbfNodeType[] values()
for (RbfNodeType c : RbfNodeType.values()) System.out.println(c);
public static RbfNodeType 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 © 2014. All rights reserved.