public enum Op3 extends java.lang.Enum<Op3> implements WithBytecode
| Enum Constant and Description |
|---|
MUX
Functional mux.
|
| Modifier and Type | Method and Description |
|---|---|
Bytecode |
getBytecode() |
static Op3 |
getOp(java.lang.String name) |
java.lang.Object |
run(java.lang.Object a,
java.lang.Object b,
java.lang.Object c) |
java.lang.String |
toString() |
static Op3 |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Op3[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Op3 MUX
public static Op3[] values()
for (Op3 c : Op3.values()) System.out.println(c);
public static Op3 valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic Bytecode getBytecode()
getBytecode in interface WithBytecodeBytecodepublic java.lang.Object run(java.lang.Object a,
java.lang.Object b,
java.lang.Object c)
a - first argumentb - second argumentc - third argumentField.public java.lang.String toString()
toString in class java.lang.Enum<Op3>