Enum GcubeQuery.FIELD_TYPE
- java.lang.Object
-
- java.lang.Enum<GcubeQuery.FIELD_TYPE>
-
- org.gcube.datatransfer.resolver.applicationprofile.GcubeQuery.FIELD_TYPE
-
- All Implemented Interfaces:
Serializable,Comparable<GcubeQuery.FIELD_TYPE>
- Enclosing class:
- GcubeQuery
public static enum GcubeQuery.FIELD_TYPE extends Enum<GcubeQuery.FIELD_TYPE>
The Enum FIELD_TYPE.- Author:
- Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it Dec 20, 2016
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APP_IDRESOURCE_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GcubeQuery.FIELD_TYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static GcubeQuery.FIELD_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESOURCE_NAME
public static final GcubeQuery.FIELD_TYPE RESOURCE_NAME
-
APP_ID
public static final GcubeQuery.FIELD_TYPE APP_ID
-
-
Method Detail
-
values
public static GcubeQuery.FIELD_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 (GcubeQuery.FIELD_TYPE c : GcubeQuery.FIELD_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 GcubeQuery.FIELD_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
-
-