Enum GeoportalResolverQueryStringBuilder.RESOLVE_AS
- java.lang.Object
-
- java.lang.Enum<GeoportalResolverQueryStringBuilder.RESOLVE_AS>
-
- org.gcube.portlets.user.uriresolvermanager.resolvers.query.GeoportalResolverQueryStringBuilder.RESOLVE_AS
-
- All Implemented Interfaces:
Serializable,Comparable<GeoportalResolverQueryStringBuilder.RESOLVE_AS>
- Enclosing class:
- GeoportalResolverQueryStringBuilder
public static enum GeoportalResolverQueryStringBuilder.RESOLVE_AS extends Enum<GeoportalResolverQueryStringBuilder.RESOLVE_AS>
The Enum RESOLVE_AS_PARAMETER.- Author:
- Francesco Mangiacrapa at ISTI-CNR francesco.mangiacrapa@isti.cnr.it Mar 28, 2023
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetParamValue()Gets the param value.static GeoportalResolverQueryStringBuilder.RESOLVE_ASvalueOf(String name)Returns the enum constant of this type with the specified name.static GeoportalResolverQueryStringBuilder.RESOLVE_AS[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUBLIC
public static final GeoportalResolverQueryStringBuilder.RESOLVE_AS PUBLIC
-
PRIVATE
public static final GeoportalResolverQueryStringBuilder.RESOLVE_AS PRIVATE
-
-
Method Detail
-
values
public static GeoportalResolverQueryStringBuilder.RESOLVE_AS[] 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 (GeoportalResolverQueryStringBuilder.RESOLVE_AS c : GeoportalResolverQueryStringBuilder.RESOLVE_AS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeoportalResolverQueryStringBuilder.RESOLVE_AS 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
-
getParamValue
public String getParamValue()
Gets the param value.- Returns:
- the param value
-
-