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