Enum Class BoundedType.BoundKind

java.lang.Object
java.lang.Enum<BoundedType.BoundKind>
org.checkerframework.afu.scenelib.type.BoundedType.BoundKind
All Implemented Interfaces:
Serializable, Comparable<BoundedType.BoundKind>, Constable
Enclosing class:
BoundedType

public static enum BoundedType.BoundKind extends Enum<BoundedType.BoundKind>
The possible bound kinds.
  • Enum Constant Details

  • Method Details

    • values

      public static BoundedType.BoundKind[] 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 BoundedType.BoundKind 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
    • toString

      public String toString()
      Gets this bound kind in a format that can be inserted into source code.
      Overrides:
      toString in class Enum<BoundedType.BoundKind>