Enum GEOPORTAL_CONFIGURATION_TYPE
- java.lang.Object
-
- java.lang.Enum<GEOPORTAL_CONFIGURATION_TYPE>
-
- org.gcube.application.geoportalcommon.shared.geoportal.ucd.GEOPORTAL_CONFIGURATION_TYPE
-
- All Implemented Interfaces:
Serializable,Comparable<GEOPORTAL_CONFIGURATION_TYPE>
public enum GEOPORTAL_CONFIGURATION_TYPE extends Enum<GEOPORTAL_CONFIGURATION_TYPE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description actions_definitiongcube_profilesitem_fields
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Gets the id.StringtoString()To string.static GEOPORTAL_CONFIGURATION_TYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static GEOPORTAL_CONFIGURATION_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
item_fields
public static final GEOPORTAL_CONFIGURATION_TYPE item_fields
-
gcube_profiles
public static final GEOPORTAL_CONFIGURATION_TYPE gcube_profiles
-
actions_definition
public static final GEOPORTAL_CONFIGURATION_TYPE actions_definition
-
-
Method Detail
-
values
public static GEOPORTAL_CONFIGURATION_TYPE[] 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 (GEOPORTAL_CONFIGURATION_TYPE c : GEOPORTAL_CONFIGURATION_TYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GEOPORTAL_CONFIGURATION_TYPE 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
-
getId
public String getId()
Gets the id.- Returns:
- the id
-
toString
public String toString()
To string.- Overrides:
toStringin classEnum<GEOPORTAL_CONFIGURATION_TYPE>- Returns:
- the string
-
-