org.deegree.feature.persistence.query
Enum Query.QueryHint

java.lang.Object
  extended by java.lang.Enum<Query.QueryHint>
      extended by org.deegree.feature.persistence.query.Query.QueryHint
All Implemented Interfaces:
Serializable, Comparable<Query.QueryHint>
Enclosing class:
Query

public static enum Query.QueryHint
extends Enum<Query.QueryHint>

Names for hints and additional parameters that a FeatureStore implementation may take into account to increase efficient query processing.

Version:
$Revision: 30887 $, $Date: 2011-05-23 10:57:10 +0200 (Mon, 23 May 2011) $
Author:
Markus Schneider, last edited by: $Author: aschmitz $

Enum Constant Summary
HINT_RESOLUTION
          If present, the store can simplify geometries according to the resolution.
HINT_SCALE
          If present, the store can use a different LOD for the scale.
 
Method Summary
static Query.QueryHint valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Query.QueryHint[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

HINT_SCALE

public static final Query.QueryHint HINT_SCALE
If present, the store can use a different LOD for the scale.


HINT_RESOLUTION

public static final Query.QueryHint HINT_RESOLUTION
If present, the store can simplify geometries according to the resolution.

Method Detail

values

public static Query.QueryHint[] 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 (Query.QueryHint c : Query.QueryHint.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Query.QueryHint 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 name
NullPointerException - if the argument is null


Copyright © 2011. All Rights Reserved.