Enum Class GetAccess
- All Implemented Interfaces:
Serializable,Comparable<GetAccess>,Constable
Specifies the access modifier to apply to the getter method for a property.
Rose conversion note: Corresponds to Class Attribute Specification -> General -> Export Control.
Supported API: true
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionGenerates a getter with no access modifier (traditionally referred to as "default" or "package" access); the getter may be called from within the package only.Do not generate a getter method.Generates aprotectedgetter.Generates apublicgetter. -
Method Summary
-
Enum Constant Details
-
PUBLIC
Generates apublicgetter.Rose conversion note: Corresponds to
Public.Supported API: true
-
PROTECTED
Generates aprotectedgetter.Rose conversion note: Corresponds to
Protected.Supported API: true
-
PACKAGE
Generates a getter with no access modifier (traditionally referred to as "default" or "package" access); the getter may be called from within the package only.Rose conversion note: Corresponds to
Implementation.Supported API: true
-
PRIVATE
Do not generate a getter method.Rose conversion note: Corresponds to
Private.Supported API: true
-