Package org.gbif.api.model.occurrence
Enum SqlDownloadFunction
- java.lang.Object
-
- java.lang.Enum<SqlDownloadFunction>
-
- org.gbif.api.model.occurrence.SqlDownloadFunction
-
- All Implemented Interfaces:
Serializable
,Comparable<SqlDownloadFunction>
public enum SqlDownloadFunction extends Enum<SqlDownloadFunction>
Custom functions supported by the SQL download API.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getSqlIdentifier()
static SqlDownloadFunction
valueOf(String name)
Returns the enum constant of this type with the specified name.static SqlDownloadFunction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEGREE_MINUTE_SECOND_GRID_CELL_CODE
public static final SqlDownloadFunction DEGREE_MINUTE_SECOND_GRID_CELL_CODE
-
EEA_CELL_CODE
public static final SqlDownloadFunction EEA_CELL_CODE
-
ISEA3H_CELL_CODE
public static final SqlDownloadFunction ISEA3H_CELL_CODE
-
MILITARY_GRID_REFERENCE_SYSTEM_CELL_CODE
public static final SqlDownloadFunction MILITARY_GRID_REFERENCE_SYSTEM_CELL_CODE
-
EXTENDED_QUARTER_DEGREE_GRID_CELL_CODE
public static final SqlDownloadFunction EXTENDED_QUARTER_DEGREE_GRID_CELL_CODE
-
TEMPORAL_UNCERTAINTY
public static final SqlDownloadFunction TEMPORAL_UNCERTAINTY
-
GEO_DISTANCE
public static final SqlDownloadFunction GEO_DISTANCE
-
MILLISECONDS_TO_ISO8601
public static final SqlDownloadFunction MILLISECONDS_TO_ISO8601
-
SECONDS_TO_ISO8601
public static final SqlDownloadFunction SECONDS_TO_ISO8601
-
SECONDS_TO_LOCAL_ISO8601
public static final SqlDownloadFunction SECONDS_TO_LOCAL_ISO8601
-
CONTAINS
public static final SqlDownloadFunction CONTAINS
-
STRING_ARRAY_CONTAINS_GENERIC
public static final SqlDownloadFunction STRING_ARRAY_CONTAINS_GENERIC
-
STRING_ARRAY_LIKE_GENERIC
public static final SqlDownloadFunction STRING_ARRAY_LIKE_GENERIC
-
-
Method Detail
-
values
public static SqlDownloadFunction[] 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 (SqlDownloadFunction c : SqlDownloadFunction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SqlDownloadFunction 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
-
getSqlIdentifier
public String getSqlIdentifier()
-
-