Enum Class FrameSlotKind

java.lang.Object
java.lang.Enum<FrameSlotKind>
com.oracle.truffle.api.frame.FrameSlotKind
All Implemented Interfaces:
Serializable, Comparable<FrameSlotKind>, Constable

public enum FrameSlotKind extends Enum<FrameSlotKind>
Since:
0.8 or earlier
  • Enum Constant Details

    • Object

      public static final FrameSlotKind Object
      Since:
      0.8 or earlier
    • Long

      public static final FrameSlotKind Long
      Since:
      0.8 or earlier
    • Int

      public static final FrameSlotKind Int
      Since:
      0.8 or earlier
    • Double

      public static final FrameSlotKind Double
      Since:
      0.8 or earlier
    • Float

      public static final FrameSlotKind Float
      Since:
      0.8 or earlier
    • Boolean

      public static final FrameSlotKind Boolean
      Since:
      0.8 or earlier
    • Byte

      public static final FrameSlotKind Byte
      Since:
      0.8 or earlier
    • Illegal

      public static final FrameSlotKind Illegal
      Since:
      0.8 or earlier
    • Static

      public static final FrameSlotKind Static
      Since:
      22.2
  • Field Details

    • tag

      public final byte tag
      Since:
      0.8 or earlier
  • Method Details

    • values

      public static FrameSlotKind[] 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 FrameSlotKind 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
    • fromTag

      public static FrameSlotKind fromTag(byte tag)
      Converts from the numeric representation used in the implementation of Frame to the FrameSlotKind.
      Parameters:
      tag - the numeric (byte) representation of the kind
      Returns:
      the FrameSlotKind
      Since:
      22.0