Enum ItemObserved.OPTIONAL_FIELD
- java.lang.Object
-
- java.lang.Enum<ItemObserved.OPTIONAL_FIELD>
-
- org.gcube.application.cms.plugins.events.ItemObserved.OPTIONAL_FIELD
-
- All Implemented Interfaces:
Serializable,Comparable<ItemObserved.OPTIONAL_FIELD>
- Enclosing class:
- ItemObserved<T extends org.gcube.application.geoportal.common.model.document.Project>
public static enum ItemObserved.OPTIONAL_FIELD extends Enum<ItemObserved.OPTIONAL_FIELD>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description messagepreview_url
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ItemObserved.OPTIONAL_FIELDvalueOf(String name)Returns the enum constant of this type with the specified name.static ItemObserved.OPTIONAL_FIELD[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
message
public static final ItemObserved.OPTIONAL_FIELD message
-
preview_url
public static final ItemObserved.OPTIONAL_FIELD preview_url
-
-
Method Detail
-
values
public static ItemObserved.OPTIONAL_FIELD[] 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 (ItemObserved.OPTIONAL_FIELD c : ItemObserved.OPTIONAL_FIELD.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ItemObserved.OPTIONAL_FIELD 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
-
-