GigaSpaces XAP 9.0 API

com.gigaspaces.query
Enum QueryResultType

java.lang.Object
  extended by java.lang.Enum<QueryResultType>
      extended by com.gigaspaces.query.QueryResultType
All Implemented Interfaces:
Serializable, Comparable<QueryResultType>

public enum QueryResultType
extends Enum<QueryResultType>

Determines whether a query will return objects (a.k.a. POJOs) or documents.

Since:
8.0
Author:
Niv Ingberg
See Also:
SQLQuery, IdQuery, IdsQuery

Enum Constant Summary
DEFAULT
          Query result type is implicitly determined using the type of entries in the space.
DOCUMENT
          Query should return a SpaceDocument.
NOT_SET
          Deprecated. Since 8.0.1 - Use DEFAULT instead.
OBJECT
          Query should return an Object (POJO).
 
Method Summary
static QueryResultType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static QueryResultType[] 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

NOT_SET

@Deprecated
public static final QueryResultType NOT_SET
Deprecated. Since 8.0.1 - Use DEFAULT instead.

DEFAULT

public static final QueryResultType DEFAULT
Query result type is implicitly determined using the type of entries in the space.

Since:
8.0.1

OBJECT

public static final QueryResultType OBJECT
Query should return an Object (POJO).


DOCUMENT

public static final QueryResultType DOCUMENT
Query should return a SpaceDocument.

Method Detail

values

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

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

valueOf

public static QueryResultType 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

GigaSpaces XAP 9.0 API

Copyright © GigaSpaces.