java.lang.Object
java.lang.Enum<BoolOp>
org.benf.cfr.reader.bytecode.analysis.parse.expression.BoolOp
All Implemented Interfaces:
Serializable, Comparable<BoolOp>, Constable

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

    • OR

      public static final BoolOp OR
    • AND

      public static final BoolOp AND
  • Field Details

    • showAs

      private final String showAs
    • precedence

      private final Precedence precedence
  • Constructor Details

  • Method Details

    • values

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

      public static BoolOp valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getShowAs

      public String getShowAs()
    • getPrecedence

      public Precedence getPrecedence()
    • getDemorgan

      public BoolOp getDemorgan()