Enum Class InsnOpcode

java.lang.Object
java.lang.Enum<InsnOpcode>
net.covers1624.coffeegrinder.bytecode.InsnOpcode
All Implemented Interfaces:
Serializable, Comparable<InsnOpcode>, Constable

public enum InsnOpcode extends Enum<InsnOpcode>
Created by covers1624 on 21/2/21.
  • Enum Constant Details

    • NOP

      public static final InsnOpcode NOP
    • DEAD_CODE

      public static final InsnOpcode DEAD_CODE
    • ARRAY_ELEMENT_REFERENCE

      public static final InsnOpcode ARRAY_ELEMENT_REFERENCE
    • ARRAY_LEN

      public static final InsnOpcode ARRAY_LEN
    • ASSERT

      public static final InsnOpcode ASSERT
    • BINARY

      public static final InsnOpcode BINARY
    • BLOCK

      public static final InsnOpcode BLOCK
    • BLOCK_CONTAINER

      public static final InsnOpcode BLOCK_CONTAINER
    • BRANCH

      public static final InsnOpcode BRANCH
    • CHECK_CAST

      public static final InsnOpcode CHECK_CAST
    • CLASS_DECL

      public static final InsnOpcode CLASS_DECL
    • COMPARE

      public static final InsnOpcode COMPARE
    • COMPARISON

      public static final InsnOpcode COMPARISON
    • COMPOUND_ASSIGNMENT

      public static final InsnOpcode COMPOUND_ASSIGNMENT
    • CONTINUE

      public static final InsnOpcode CONTINUE
    • DO_WHILE

      public static final InsnOpcode DO_WHILE
    • FIELD_DECL

      public static final InsnOpcode FIELD_DECL
    • FIELD_REFERENCE

      public static final InsnOpcode FIELD_REFERENCE
    • FOR_EACH_LOOP

      public static final InsnOpcode FOR_EACH_LOOP
    • FOR_LOOP

      public static final InsnOpcode FOR_LOOP
    • IF

      public static final InsnOpcode IF
    • POST_INCREMENT

      public static final InsnOpcode POST_INCREMENT
    • INSTANCE_OF

      public static final InsnOpcode INSTANCE_OF
    • INVOKE

      public static final InsnOpcode INVOKE
    • INVOKE_DYNAMIC

      public static final InsnOpcode INVOKE_DYNAMIC
    • LDC_BOOLEAN

      public static final InsnOpcode LDC_BOOLEAN
    • LDC_CHAR

      public static final InsnOpcode LDC_CHAR
    • LDC_CLASS

      public static final InsnOpcode LDC_CLASS
    • LDC_NULL

      public static final InsnOpcode LDC_NULL
    • LDC_NUMBER

      public static final InsnOpcode LDC_NUMBER
    • LDC_STRING

      public static final InsnOpcode LDC_STRING
    • LEAVE

      public static final InsnOpcode LEAVE
    • LOAD

      public static final InsnOpcode LOAD
    • LOAD_THIS

      public static final InsnOpcode LOAD_THIS
    • LOCAL_REFERENCE

      public static final InsnOpcode LOCAL_REFERENCE
    • LOCAL_VARIABLE

      public static final InsnOpcode LOCAL_VARIABLE
    • LOGIC_AND

      public static final InsnOpcode LOGIC_AND
    • LOGIC_NOT

      public static final InsnOpcode LOGIC_NOT
    • LOGIC_OR

      public static final InsnOpcode LOGIC_OR
    • METHOD_DECL

      public static final InsnOpcode METHOD_DECL
    • METHOD_REFERENCE

      public static final InsnOpcode METHOD_REFERENCE
    • MONITOR_ENTER

      public static final InsnOpcode MONITOR_ENTER
    • MONITOR_EXIT

      public static final InsnOpcode MONITOR_EXIT
    • NEW

      public static final InsnOpcode NEW
    • NEW_ARRAY

      public static final InsnOpcode NEW_ARRAY
    • NEW_OBJECT

      public static final InsnOpcode NEW_OBJECT
    • RETURN

      public static final InsnOpcode RETURN
    • STORE

      public static final InsnOpcode STORE
    • SWITCH

      public static final InsnOpcode SWITCH
    • SWITCH_TABLE

      public static final InsnOpcode SWITCH_TABLE
    • SWITCH_SECTION

      public static final InsnOpcode SWITCH_SECTION
    • SYNCHRONIZED

      public static final InsnOpcode SYNCHRONIZED
    • TERNARY

      public static final InsnOpcode TERNARY
    • THROW

      public static final InsnOpcode THROW
    • TRY_CATCH

      public static final InsnOpcode TRY_CATCH
    • TRY_CATCH_HANDLER

      public static final InsnOpcode TRY_CATCH_HANDLER
    • TRY_FINALLY

      public static final InsnOpcode TRY_FINALLY
    • TRY_WITH_RESOURCES

      public static final InsnOpcode TRY_WITH_RESOURCES
    • WHILE_LOOP

      public static final InsnOpcode WHILE_LOOP
    • YIELD

      public static final InsnOpcode YIELD
  • Method Details

    • values

      public static InsnOpcode[] 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 InsnOpcode 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