Package org.gcube.service.idm.controller
Enum KCRolesController.REPR
- java.lang.Object
-
- java.lang.Enum<KCRolesController.REPR>
-
- org.gcube.service.idm.controller.KCRolesController.REPR
-
- All Implemented Interfaces:
Serializable,Comparable<KCRolesController.REPR>
- Enclosing class:
- KCRolesController
public static enum KCRolesController.REPR extends Enum<KCRolesController.REPR>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KCRolesController.REPRvalueOf(String name)Returns the enum constant of this type with the specified name.static KCRolesController.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.REPR full
-
compact
public static final KCRolesController.REPR compact
-
name
public static final KCRolesController.REPR name
-
id
public static final KCRolesController.REPR id
-
none
public static final KCRolesController.REPR none
-
-
Method Detail
-
values
public static KCRolesController.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.REPR c : KCRolesController.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.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
-
-