public static enum ExpressionNode.Kind extends Enum<ExpressionNode.Kind>
| Enum Constant and Description |
|---|
Constant |
Function |
Group |
Name |
Unary |
| Modifier and Type | Method and Description |
|---|---|
static ExpressionNode.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionNode.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionNode.Kind Name
public static final ExpressionNode.Kind Function
public static final ExpressionNode.Kind Constant
public static final ExpressionNode.Kind Group
public static final ExpressionNode.Kind Unary
public static ExpressionNode.Kind[] values()
for (ExpressionNode.Kind c : ExpressionNode.Kind.values()) System.out.println(c);
public static ExpressionNode.Kind 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–2021 Health Level 7. All rights reserved.