Enum StaticTypesMarker

java.lang.Object
java.lang.Enum<StaticTypesMarker>
org.codehaus.groovy.transform.stc.StaticTypesMarker
All Implemented Interfaces:
Serializable, Comparable<StaticTypesMarker>, java.lang.constant.Constable

public enum StaticTypesMarker extends Enum<StaticTypesMarker>
This enumeration is used by the AST transformations which rely on static type checking, either to store or to retrieve information from AST node metadata. The values of this enumeration are used as metadata keys.
  • Enum Constant Details

    • INFERRED_TYPE

      public static final StaticTypesMarker INFERRED_TYPE
      used to store type information on class nodes
    • DECLARATION_INFERRED_TYPE

      public static final StaticTypesMarker DECLARATION_INFERRED_TYPE
      in flow analysis, represents the type of the declaration node LHS
    • INFERRED_RETURN_TYPE

      public static final StaticTypesMarker INFERRED_RETURN_TYPE
      used to store inferred return type for methods and closures
    • CLOSURE_ARGUMENTS

      public static final StaticTypesMarker CLOSURE_ARGUMENTS
      used to store expected closure argument types on an expression
    • READONLY_PROPERTY

      public static final StaticTypesMarker READONLY_PROPERTY
      used to tell that a property expression refers to a read-only property
    • INITIAL_EXPRESSION

      public static final StaticTypesMarker INITIAL_EXPRESSION
      used to store the default expression for a parameter
    • DIRECT_METHOD_CALL_TARGET

      public static final StaticTypesMarker DIRECT_METHOD_CALL_TARGET
      used to store the MethodNode a MethodCallExpression should target
    • DELEGATION_METADATA

      public static final StaticTypesMarker DELEGATION_METADATA
      used to store the delegation strategy and delegate type of a closure derived from DelegatesTo metadata
    • IMPLICIT_RECEIVER

      public static final StaticTypesMarker IMPLICIT_RECEIVER
      if the receiver is implicit but not "this", store the name of the receiver (delegate or owner)
    • PV_FIELDS_ACCESS

      public static final StaticTypesMarker PV_FIELDS_ACCESS
      set of private fields that are accessed from closures or inner classes
    • PV_FIELDS_MUTATION

      public static final StaticTypesMarker PV_FIELDS_MUTATION
      set of private fields that are set from closures or inner classes
    • PV_METHODS_ACCESS

      public static final StaticTypesMarker PV_METHODS_ACCESS
      set of private methods that are accessed from closures or inner classes
    • DYNAMIC_RESOLUTION

      public static final StaticTypesMarker DYNAMIC_RESOLUTION
      call recognized by a type checking extension as a dynamic method call
    • SUPER_MOP_METHOD_REQUIRED

      public static final StaticTypesMarker SUPER_MOP_METHOD_REQUIRED
      used to store the list of MOP methods that still have to be generated
    • PARAMETER_TYPE

      public static final StaticTypesMarker PARAMETER_TYPE
      used to store the parameter type of method invocation on an expression
    • SWITCH_CONDITION_EXPRESSION_TYPE

      public static final StaticTypesMarker SWITCH_CONDITION_EXPRESSION_TYPE
      used to store the condition expression type of the switch-case statement
    • TYPE

      public static final StaticTypesMarker TYPE
  • Method Details

    • values

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