Enum Class AccessorType

java.lang.Object
java.lang.Enum<AccessorType>
org.eclipse.xtend.lib.annotations.AccessorType
All Implemented Interfaces:
Serializable, Comparable<AccessorType>, Constable

@Beta @GwtCompatible public enum AccessorType extends Enum<AccessorType>
Since:
2.7
  • Enum Constant Details

    • PUBLIC_GETTER

      public static final AccessorType PUBLIC_GETTER
    • PROTECTED_GETTER

      public static final AccessorType PROTECTED_GETTER
    • PACKAGE_GETTER

      public static final AccessorType PACKAGE_GETTER
    • PRIVATE_GETTER

      public static final AccessorType PRIVATE_GETTER
    • PUBLIC_SETTER

      public static final AccessorType PUBLIC_SETTER
    • PROTECTED_SETTER

      public static final AccessorType PROTECTED_SETTER
    • PACKAGE_SETTER

      public static final AccessorType PACKAGE_SETTER
    • PRIVATE_SETTER

      public static final AccessorType PRIVATE_SETTER
    • NONE

      public static final AccessorType NONE
  • Method Details

    • values

      public static AccessorType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AccessorType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null