Enum Class CommonValues

java.lang.Object
java.lang.Enum<CommonValues>
org.ek9lang.compiler.support.CommonValues
All Implemented Interfaces:
Serializable, Comparable<CommonValues>, Constable

public enum CommonValues extends Enum<CommonValues>
Fixed set of constants that tend to be used to 'squirrel' away data - these are the keys.
  • Enum Constant Details

    • LOOP

      public static final CommonValues LOOP
    • DO

      public static final CommonValues DO
    • WHILE

      public static final CommonValues WHILE
    • UNINITIALISED_AT_DECLARATION

      public static final CommonValues UNINITIALISED_AT_DECLARATION
    • RESULT_OK_ACCESS_REQUIRES_SAFE_ACCESS

      public static final CommonValues RESULT_OK_ACCESS_REQUIRES_SAFE_ACCESS
    • RESULT_ERROR_ACCESS_REQUIRES_SAFE_ACCESS

      public static final CommonValues RESULT_ERROR_ACCESS_REQUIRES_SAFE_ACCESS
    • OPTIONAL_GET_ACCESS_REQUIRES_SAFE_ACCESS

      public static final CommonValues OPTIONAL_GET_ACCESS_REQUIRES_SAFE_ACCESS
    • ITERATOR_NEXT_ACCESS_REQUIRES_SAFE_ACCESS

      public static final CommonValues ITERATOR_NEXT_ACCESS_REQUIRES_SAFE_ACCESS
    • NO_REFERENCED_RESET

      public static final CommonValues NO_REFERENCED_RESET
    • SUBSTITUTED

      public static final CommonValues SUBSTITUTED
    • ACCESSED

      public static final CommonValues ACCESSED
    • DEFAULTED

      public static final CommonValues DEFAULTED
    • EXTERN

      public static final CommonValues EXTERN
    • COMPLEXITY

      public static final CommonValues COMPLEXITY
    • CONSTRAIN

      public static final CommonValues CONSTRAIN
    • GENERIC_PARENT

      public static final CommonValues GENERIC_PARENT
    • BASE_NAME

      public static final CommonValues BASE_NAME
    • LANG

      public static final CommonValues LANG
    • FIXED

      public static final CommonValues FIXED
    • APPLICATION

      public static final CommonValues APPLICATION
    • HTTP_URI

      public static final CommonValues HTTP_URI
    • URI_PROTO

      public static final CommonValues URI_PROTO
    • HTTP_REQUEST

      public static final CommonValues HTTP_REQUEST
    • HTTP_PATH

      public static final CommonValues HTTP_PATH
    • HTTP_HEADER

      public static final CommonValues HTTP_HEADER
    • HTTP_QUERY

      public static final CommonValues HTTP_QUERY
    • HTTP_VERB

      public static final CommonValues HTTP_VERB
    • HTTP_ACCESS

      public static final CommonValues HTTP_ACCESS
    • HTTP_SOURCE

      public static final CommonValues HTTP_SOURCE
  • Method Details

    • values

      public static CommonValues[] 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 CommonValues 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
    • getDescription

      public String getDescription()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<CommonValues>