Package | Description |
---|---|
com.tameif.tame |
Base package.
|
com.tameif.tame.lang |
Contains linguistic abstraction classes.
|
Modifier and Type | Field and Description |
---|---|
static TAMEOperation[] |
TAMEOperation.VALUES
Array to get around multiple allocations.
|
Modifier and Type | Method and Description |
---|---|
static TAMEOperation |
TAMEOperation.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TAMEOperation[] |
TAMEOperation.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
TAMEOperation |
Operation.getOperation()
Gets the operation on this operation.
|
Modifier and Type | Method and Description |
---|---|
static Operation |
Operation.create(TAMEOperation operation)
Creates an operation.
|
static Operation |
Operation.create(TAMEOperation operation,
Block conditionalBlock,
Block successBlock)
Creates an operation with a conditional and success block.
|
static Operation |
Operation.create(TAMEOperation operation,
Block conditionalBlock,
Block successBlock,
Block failureBlock)
Creates an operation with a conditional, success, and failure block.
|
static Operation |
Operation.create(TAMEOperation operation,
Block initializationBlock,
Block conditionalBlock,
Block stepBlock,
Block successBlock)
Creates a operation with an initializer, conditional, step, success, and failure block.
|
static Operation |
Operation.create(TAMEOperation operation,
Value operand0)
Creates an operation with an operand.
|
static Operation |
Operation.create(TAMEOperation operation,
Value operand0,
Value operand1)
Creates an operation with operands.
|