Enum Class AccessLevel

java.lang.Object
java.lang.Enum<AccessLevel>
cl.obcom.desktopfx.core.AccessLevel
All Implemented Interfaces:
Serializable, Comparable<AccessLevel>, Constable

public enum AccessLevel extends Enum<AccessLevel>
Levels at which Desktop data items can be accessed.
  • Enum Constant Details

    • GLOBAL

      public static final AccessLevel GLOBAL
      Data items can be accessed by all users.
    • USER

      public static final AccessLevel USER
      Data items can be accessed by a user regardless of the profile.
    • PROFILE

      public static final AccessLevel PROFILE
      Data items can be accessed by a particular user and profile.
  • Method Details

    • values

      public static AccessLevel[] 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 AccessLevel 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
    • getCode

      public int getCode()
      Returns the unique code of the access level.
      Returns:
      the unique code of the access level.