public enum QueryOption extends java.lang.Enum<QueryOption>
The query result option enumeration class.
The class defines the returned result type when querying. Contains only returning attributes, only returning geometric entities, returning attributes, and geometry entities three types.
| Enum Constant and Description |
|---|
ATTRIBUTE
${services_components_commontypes_PrjParameter_attribute_ATTRIBUTE_Title}
|
ATTRIBUTEANDGEOMETRY
${services_components_commontypes_PrjParameter_attribute_ATTRIBUTEANDGEOMETRY_Title}
|
GEOMETRY
${services_components_commontypes_PrjParameter_attribute_GEOMETRY_Title}
|
| Modifier and Type | Method and Description |
|---|---|
static QueryOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryOption[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final QueryOption ATTRIBUTE
${services_components_commontypes_PrjParameter_attribute_ATTRIBUTE_Title}
${services_components_commontypes_PrjParameter_attribute_ATTRIBUTE_Description}
public static final QueryOption GEOMETRY
${services_components_commontypes_PrjParameter_attribute_GEOMETRY_Title}
${services_components_commontypes_PrjParameter_attribute_GEOMETRY_Description}
public static final QueryOption ATTRIBUTEANDGEOMETRY
${services_components_commontypes_PrjParameter_attribute_ATTRIBUTEANDGEOMETRY_Title}
${services_components_commontypes_PrjParameter_attribute_ATTRIBUTEANDGEOMETRY_Description}
public static QueryOption[] values()
for (QueryOption c : QueryOption.values())
System.out.println(c);
public static QueryOption valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null