Enum Class QueryResultType

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

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:
  • Enum Constant Details

    • 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 Details

    • values

      public static QueryResultType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static QueryResultType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null