Enum NotificationGenericConstants.CUSTOM_USER_ROLES
- java.lang.Object
-
- java.lang.Enum<NotificationGenericConstants.CUSTOM_USER_ROLES>
-
- org.gcube.application.cms.notifications.NotificationGenericConstants.CUSTOM_USER_ROLES
-
- All Implemented Interfaces:
Serializable,Comparable<NotificationGenericConstants.CUSTOM_USER_ROLES>
- Enclosing class:
- NotificationGenericConstants
public static enum NotificationGenericConstants.CUSTOM_USER_ROLES extends Enum<NotificationGenericConstants.CUSTOM_USER_ROLES>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AnyItem_Creator
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NotificationGenericConstants.CUSTOM_USER_ROLESvalueOf(String name)Returns the enum constant of this type with the specified name.static NotificationGenericConstants.CUSTOM_USER_ROLES[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Item_Creator
public static final NotificationGenericConstants.CUSTOM_USER_ROLES Item_Creator
-
Any
public static final NotificationGenericConstants.CUSTOM_USER_ROLES Any
-
-
Method Detail
-
values
public static NotificationGenericConstants.CUSTOM_USER_ROLES[] 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 (NotificationGenericConstants.CUSTOM_USER_ROLES c : NotificationGenericConstants.CUSTOM_USER_ROLES.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationGenericConstants.CUSTOM_USER_ROLES 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
-
-