public static enum DLICallProperty.FLD_FSA_OPCODE extends Enum<DLICallProperty.FLD_FSA_OPCODE>
Enum Constant and Description |
---|
ADD
Add the operand to the field value.
|
E
Verify that the field value and the operand are equal.
|
G
Verify that the field value is greater than the operand.
|
H
Verify that the field value is greater than or equal to the operand.
|
L
Verify that the field value is less than the operand.
|
M
Verify that the field value is less than or equal to the operand.
|
N
Verify that the field value is not equal to the operand.
|
SET
Set the field value to the value of the operand.
|
SUBTRACT
Subtract the operand from the field value.
|
Modifier and Type | Method and Description |
---|---|
static DLICallProperty.FLD_FSA_OPCODE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DLICallProperty.FLD_FSA_OPCODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DLICallProperty.FLD_FSA_OPCODE ADD
public static final DLICallProperty.FLD_FSA_OPCODE SUBTRACT
public static final DLICallProperty.FLD_FSA_OPCODE SET
public static final DLICallProperty.FLD_FSA_OPCODE E
public static final DLICallProperty.FLD_FSA_OPCODE G
public static final DLICallProperty.FLD_FSA_OPCODE H
public static final DLICallProperty.FLD_FSA_OPCODE L
public static final DLICallProperty.FLD_FSA_OPCODE M
public static final DLICallProperty.FLD_FSA_OPCODE N
public static DLICallProperty.FLD_FSA_OPCODE[] values()
for (DLICallProperty.FLD_FSA_OPCODE c : DLICallProperty.FLD_FSA_OPCODE.values()) System.out.println(c);
public static DLICallProperty.FLD_FSA_OPCODE 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 null(c) Copyright IBM Corporation 2008, 2017.