Package org.n52.shetland.ogc.filter
Enum FilterConstants.AdHocQueryParams
- java.lang.Object
-
- java.lang.Enum<FilterConstants.AdHocQueryParams>
-
- org.n52.shetland.ogc.filter.FilterConstants.AdHocQueryParams
-
- All Implemented Interfaces:
Serializable,Comparable<FilterConstants.AdHocQueryParams>
- Enclosing interface:
- FilterConstants
public static enum FilterConstants.AdHocQueryParams extends Enum<FilterConstants.AdHocQueryParams>
Enumeration for AdHoc query parameter- Since:
- 1.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AliasesBBoxFilterFilter_LanguagePropertyNameResourceIdSortByTypeNames
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FilterConstants.AdHocQueryParamsvalueOf(String name)Returns the enum constant of this type with the specified name.static FilterConstants.AdHocQueryParams[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TypeNames
public static final FilterConstants.AdHocQueryParams TypeNames
-
Aliases
public static final FilterConstants.AdHocQueryParams Aliases
-
PropertyName
public static final FilterConstants.AdHocQueryParams PropertyName
-
Filter
public static final FilterConstants.AdHocQueryParams Filter
-
Filter_Language
public static final FilterConstants.AdHocQueryParams Filter_Language
-
ResourceId
public static final FilterConstants.AdHocQueryParams ResourceId
-
BBox
public static final FilterConstants.AdHocQueryParams BBox
-
SortBy
public static final FilterConstants.AdHocQueryParams SortBy
-
-
Method Detail
-
values
public static FilterConstants.AdHocQueryParams[] 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 (FilterConstants.AdHocQueryParams c : FilterConstants.AdHocQueryParams.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilterConstants.AdHocQueryParams 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
-
-