Enum InvokeType

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

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

    • STATIC

      public static final InvokeType STATIC
    • DIRECT

      public static final InvokeType DIRECT
    • VIRTUAL

      public static final InvokeType VIRTUAL
    • INTERFACE

      public static final InvokeType INTERFACE
    • SUPER

      public static final InvokeType SUPER
    • POLYMORPHIC

      public static final InvokeType POLYMORPHIC
    • CUSTOM

      public static final InvokeType CUSTOM
    • CUSTOM_RAW

      public static final InvokeType CUSTOM_RAW
  • Constructor Details

    • InvokeType

      private InvokeType()
  • Method Details

    • values

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