public static enum BtrpOperand.Type extends Enum<BtrpOperand.Type>
| Enum Constant and Description |
|---|
NODE
Denotes a hosting node
|
NUMBER
Denotes a constant integer
|
STRING
Denotes a constant string
|
VM
Denotes a virtual machine
|
| Modifier and Type | Method and Description |
|---|---|
static BtrpOperand.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BtrpOperand.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BtrpOperand.Type VM
public static final BtrpOperand.Type NODE
public static final BtrpOperand.Type NUMBER
public static final BtrpOperand.Type STRING
public static BtrpOperand.Type[] values()
for (BtrpOperand.Type c : BtrpOperand.Type.values()) System.out.println(c);
public static BtrpOperand.Type 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 © 2016 University of Nice-Sophia Antipolis. All Rights Reserved.