Package jadx.core.dex.instructions
Enum ArithOp
- java.lang.Object
-
- java.lang.Enum<ArithOp>
-
- jadx.core.dex.instructions.ArithOp
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetSymbol()booleanisBitOp()static ArithOpvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ArithOp[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD
public static final ArithOp ADD
-
SUB
public static final ArithOp SUB
-
MUL
public static final ArithOp MUL
-
DIV
public static final ArithOp DIV
-
REM
public static final ArithOp REM
-
AND
public static final ArithOp AND
-
OR
public static final ArithOp OR
-
XOR
public static final ArithOp XOR
-
SHL
public static final ArithOp SHL
-
SHR
public static final ArithOp SHR
-
USHR
public static final ArithOp USHR
-
-
Method Detail
-
values
public static ArithOp[] 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 (ArithOp c : ArithOp.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArithOp valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getSymbol
public java.lang.String getSymbol()
-
isBitOp
public boolean isBitOp()
-
-