Enum ArithOp

java.lang.Object
java.lang.Enum<ArithOp>
jadx.core.dex.instructions.ArithOp
All Implemented Interfaces:
Serializable, Comparable<ArithOp>

public enum ArithOp extends Enum<ArithOp>
  • Enum Constant Details

    • 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
  • Field Details

    • symbol

      private final String symbol
  • Constructor Details

    • ArithOp

      private ArithOp(String symbol)
  • Method Details

    • values

      public static ArithOp[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ArithOp 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
    • getSymbol

      public String getSymbol()
    • isBitOp

      public boolean isBitOp()