Enum GroovyCompilerScope

java.lang.Object
java.lang.Enum<GroovyCompilerScope>
org.springframework.boot.cli.compiler.GroovyCompilerScope
All Implemented Interfaces:
Serializable, Comparable<GroovyCompilerScope>, Constable

public enum GroovyCompilerScope extends Enum<GroovyCompilerScope>
The scope in which a groovy compiler operates.
Since:
1.0.0
Author:
Phillip Webb
  • Enum Constant Details

    • DEFAULT

      public static final GroovyCompilerScope DEFAULT
      Default scope, exposes groovy.jar (loaded from the parent) and the shared cli package (loaded via groovy classloader).
    • EXTENSION

      public static final GroovyCompilerScope EXTENSION
      Extension scope, allows full access to internal CLI classes.
  • Method Details

    • values

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