Enum GeoportalItemReferences.SHARE_LINK_TO
- java.lang.Object
-
- java.lang.Enum<GeoportalItemReferences.SHARE_LINK_TO>
-
- org.gcube.application.geoportalcommon.shared.GeoportalItemReferences.SHARE_LINK_TO
-
- All Implemented Interfaces:
Serializable,Comparable<GeoportalItemReferences.SHARE_LINK_TO>
- Enclosing class:
- GeoportalItemReferences
public static enum GeoportalItemReferences.SHARE_LINK_TO extends Enum<GeoportalItemReferences.SHARE_LINK_TO>
The Enum SHARE_LINK_TO.- Author:
- Francesco Mangiacrapa at ISTI-CNR francesco.mangiacrapa@isti.cnr.it Apr 5, 2024
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA_ENTRYDATA_VIEWER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GeoportalItemReferences.SHARE_LINK_TOvalueOf(String name)Returns the enum constant of this type with the specified name.static GeoportalItemReferences.SHARE_LINK_TO[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATA_VIEWER
public static final GeoportalItemReferences.SHARE_LINK_TO DATA_VIEWER
-
DATA_ENTRY
public static final GeoportalItemReferences.SHARE_LINK_TO DATA_ENTRY
-
-
Method Detail
-
values
public static GeoportalItemReferences.SHARE_LINK_TO[] 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 (GeoportalItemReferences.SHARE_LINK_TO c : GeoportalItemReferences.SHARE_LINK_TO.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeoportalItemReferences.SHARE_LINK_TO 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
-
-