Enum Class GetAccess

java.lang.Object
java.lang.Enum<GetAccess>
com.ptc.windchill.annotations.metadata.GetAccess
All Implemented Interfaces:
Serializable, Comparable<GetAccess>, Constable

public enum GetAccess extends Enum<GetAccess>
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

  • Enum Constant Details

    • PUBLIC

      public static final GetAccess PUBLIC
      Generates a public getter.

      Rose conversion note: Corresponds to Public.

      Supported API: true

    • PROTECTED

      public static final GetAccess PROTECTED
      Generates a protected getter.

      Rose conversion note: Corresponds to Protected.

      Supported API: true

    • PACKAGE

      public static final GetAccess 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

      public static final GetAccess PRIVATE
      Do not generate a getter method.

      Rose conversion note: Corresponds to Private.

      Supported API: true