Enum NodeType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<NodeType>

    public enum NodeType
    extends java.lang.Enum<NodeType>
    • Enum Constant Detail

      • Goto

        public static final NodeType Goto
      • Unwind

        public static final NodeType Unwind
      • FrameDebugInfo

        public static final NodeType FrameDebugInfo
      • MethodInvocation

        public static final NodeType MethodInvocation
      • TableSwitch

        public static final NodeType TableSwitch
      • ReturnValue

        public static final NodeType ReturnValue
      • ClassInitialization

        public static final NodeType ClassInitialization
      • SetInstanceField

        public static final NodeType SetInstanceField
      • LookupSwitch

        public static final NodeType LookupSwitch
      • SetClassField

        public static final NodeType SetClassField
      • Copy

        public static final NodeType Copy
      • Return

        public static final NodeType Return
      • MonitorExit

        public static final NodeType MonitorExit
      • Region

        public static final NodeType Region
      • TryCatch

        public static final NodeType TryCatch
      • LineNumberDebugInfo

        public static final NodeType LineNumberDebugInfo
      • ArrayStore

        public static final NodeType ArrayStore
      • USHR

        public static final NodeType USHR
      • Variable

        public static final NodeType Variable
      • PrimitiveInt

        public static final NodeType PrimitiveInt
      • PrimitiveFloat

        public static final NodeType PrimitiveFloat
      • MethodReference

        public static final NodeType MethodReference
      • FieldReference

        public static final NodeType FieldReference
      • MethodType

        public static final NodeType MethodType
      • PrimitiveLong

        public static final NodeType PrimitiveLong
      • PrimitiveDouble

        public static final NodeType PrimitiveDouble
      • PrimitiveShort

        public static final NodeType PrimitiveShort
      • Cast

        public static final NodeType Cast
      • MethodArgument

        public static final NodeType MethodArgument
      • PrimitiveClassReference

        public static final NodeType PrimitiveClassReference
      • RuntimeClass

        public static final NodeType RuntimeClass
      • NullTest

        public static final NodeType NullTest
      • ReferenceTest

        public static final NodeType ReferenceTest
      • NumericalTest

        public static final NodeType NumericalTest
      • CaughtException

        public static final NodeType CaughtException
      • BootstrapMethod

        public static final NodeType BootstrapMethod
      • ReadClassField

        public static final NodeType ReadClassField
      • This

        public static final NodeType This
      • MethodInvocationExpression

        public static final NodeType MethodInvocationExpression
      • NullReference

        public static final NodeType NullReference
      • TypeReference

        public static final NodeType TypeReference
      • RuntimeClassOf

        public static final NodeType RuntimeClassOf
      • ObjectString

        public static final NodeType ObjectString
      • InvokeDynamicExpression

        public static final NodeType InvokeDynamicExpression
      • InstanceOf

        public static final NodeType InstanceOf
      • TypeConversion

        public static final NodeType TypeConversion
      • ResolveCallsite

        public static final NodeType ResolveCallsite
      • ArrayLength

        public static final NodeType ArrayLength
      • NewArray

        public static final NodeType NewArray
      • Reinterpret

        public static final NodeType Reinterpret
      • EnumValuesOf

        public static final NodeType EnumValuesOf
      • ArrayLoad

        public static final NodeType ArrayLoad
      • ReadInstanceField

        public static final NodeType ReadInstanceField
      • MonitorEnter

        public static final NodeType MonitorEnter
    • Constructor Detail

      • NodeType

        private NodeType()
    • Method Detail

      • values

        public static NodeType[] 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 (NodeType c : NodeType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static NodeType 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 name
        java.lang.NullPointerException - if the argument is null