org.cytoscape.equations.interpreter
Enum Instruction
java.lang.Object
java.lang.Enum<Instruction>
org.cytoscape.equations.interpreter.Instruction
- All Implemented Interfaces:
- Serializable, Comparable<Instruction>
public enum Instruction
- extends Enum<Instruction>
Method Summary |
static Instruction |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Instruction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
FADD
public static final Instruction FADD
FSUB
public static final Instruction FSUB
FMUL
public static final Instruction FMUL
FDIV
public static final Instruction FDIV
FPOW
public static final Instruction FPOW
SCONCAT
public static final Instruction SCONCAT
BEQLF
public static final Instruction BEQLF
BNEQLF
public static final Instruction BNEQLF
BGTF
public static final Instruction BGTF
BLTF
public static final Instruction BLTF
BGTEF
public static final Instruction BGTEF
BLTEF
public static final Instruction BLTEF
BEQLS
public static final Instruction BEQLS
BNEQLS
public static final Instruction BNEQLS
BGTS
public static final Instruction BGTS
BLTS
public static final Instruction BLTS
BGTES
public static final Instruction BGTES
BLTES
public static final Instruction BLTES
BGTB
public static final Instruction BGTB
BLTB
public static final Instruction BLTB
BGTEB
public static final Instruction BGTEB
BLTEB
public static final Instruction BLTEB
BEQLB
public static final Instruction BEQLB
BNEQLB
public static final Instruction BNEQLB
CALL
public static final Instruction CALL
FUMINUS
public static final Instruction FUMINUS
FUPLUS
public static final Instruction FUPLUS
AREF
public static final Instruction AREF
AREF2
public static final Instruction AREF2
FCONVI
public static final Instruction FCONVI
FCONVB
public static final Instruction FCONVB
FCONVS
public static final Instruction FCONVS
SCONVF
public static final Instruction SCONVF
SCONVI
public static final Instruction SCONVI
SCONVB
public static final Instruction SCONVB
values
public static Instruction[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Instruction c : Instruction.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Instruction valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright 2010 Cytoscape Consortium. All rights reserved.