Package org.gcube.service.idm.controller
Enum KCRolesController.ROLES_REPR
- java.lang.Object
-
- java.lang.Enum<KCRolesController.ROLES_REPR>
-
- org.gcube.service.idm.controller.KCRolesController.ROLES_REPR
-
- All Implemented Interfaces:
Serializable,Comparable<KCRolesController.ROLES_REPR>
- Enclosing class:
- KCRolesController
public static enum KCRolesController.ROLES_REPR extends Enum<KCRolesController.ROLES_REPR>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KCRolesController.ROLES_REPRvalueOf(String name)Returns the enum constant of this type with the specified name.static KCRolesController.ROLES_REPR[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
full
public static final KCRolesController.ROLES_REPR full
-
compact
public static final KCRolesController.ROLES_REPR compact
-
name
public static final KCRolesController.ROLES_REPR name
-
id
public static final KCRolesController.ROLES_REPR id
-
none
public static final KCRolesController.ROLES_REPR none
-
-
Method Detail
-
values
public static KCRolesController.ROLES_REPR[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (KCRolesController.ROLES_REPR c : KCRolesController.ROLES_REPR.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KCRolesController.ROLES_REPR valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-