[Java] Enum PackageScopeTarget
- groovy.transform.PackageScopeTarget
public enum PackageScopeTarget extends Enum
Intended target when @
PackageScope is placed at the class level.
- Since:
- 1.8.0
Enum Constants Summary
Enum constant | Description |
---|---|
CLASS | Make the Class have package protected visibility. |
CONSTRUCTORS | Make the Class constructors have package protected visibility. |
FIELDS | Make the Class fields have package protected visibility. |
METHODS | Make the Class methods have package protected visibility. |
Inherited Methods Summary
Methods inherited from class | Name |
---|---|
class Enum | name, equals, toString, hashCode, compareTo, compareTo, valueOf, getDeclaringClass, ordinal, wait, wait, wait, getClass, notify, notifyAll |
Enum Constant Detail
public PackageScopeTarget CLASS
Make the Class have package protected visibility.
public PackageScopeTarget CONSTRUCTORS
Make the Class constructors have package protected visibility.
public PackageScopeTarget FIELDS
Make the Class fields have package protected visibility.
public PackageScopeTarget METHODS
Make the Class methods have package protected visibility.
© 2003-2020 The Apache Software Foundation
Licensed under the Apache license.
https://docs.groovy-lang.org/3.0.7/html/gapi/groovy/transform/PackageScopeTarget.html