public static enum IntegerMathInstr.Op extends java.lang.Enum<IntegerMathInstr.Op>
| Modifier and Type | Method and Description |
|---|---|
static IntegerMathInstr.Op |
fromOrdinal(int value) |
static IntegerMathInstr.Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntegerMathInstr.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegerMathInstr.Op ADD
public static final IntegerMathInstr.Op SUBTRACT
public static final IntegerMathInstr.Op MULTIPLY
public static final IntegerMathInstr.Op DIVIDE
public static IntegerMathInstr.Op[] values()
for (IntegerMathInstr.Op c : IntegerMathInstr.Op.values()) System.out.println(c);
public static IntegerMathInstr.Op 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 static IntegerMathInstr.Op fromOrdinal(int value)
Copyright © 2001-2023 JRuby. All Rights Reserved.