Enum Class CADatabaseRole
- All Implemented Interfaces:
Serializable, Comparable<CADatabaseRole>, Constable
The roles used by the server database.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe main cardant role.The read-only cardant role.The null role; has no privileges and cannot do anything. -
Method Summary
Modifier and TypeMethodDescriptionstatic CADatabaseRoleReturns the enum constant of this class with the specified name.static CADatabaseRole[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CARDANT
The main cardant role. -
CARDANT_READ_ONLY
The read-only cardant role. -
NONE
The null role; has no privileges and cannot do anything.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-