Enum Class InvokeKind

java.lang.Object
java.lang.Enum<InvokeKind>
io.quarkus.gizmo2.InvokeKind
All Implemented Interfaces:
Serializable, Comparable<InvokeKind>, Constable

public enum InvokeKind extends Enum<InvokeKind>
The kind of invocation.
  • Enum Constant Details

    • VIRTUAL

      public static final InvokeKind VIRTUAL
      A virtual invocation.
    • INTERFACE

      public static final InvokeKind INTERFACE
      An interface invocation.
    • SPECIAL

      public static final InvokeKind SPECIAL
      A so-called "special" invocation.
    • STATIC

      public static final InvokeKind STATIC
      A static invocation.
  • Field Details

    • values

      public static final List<InvokeKind> values
      An immutable list of all values of this type.
  • Method Details

    • values

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