Uses of Class
org.apache.ignite.cache.QueryIndexType
-
Packages that use QueryIndexType Package Description org.apache.ignite.cache Contains main Data Grid APIs. -
-
Uses of QueryIndexType in org.apache.ignite.cache
Methods in org.apache.ignite.cache that return QueryIndexType Modifier and Type Method Description static @Nullable QueryIndexType
QueryIndexType. fromOrdinal(int ord)
Efficiently gets enumerated value from its ordinal.QueryIndexType
QueryIndex. getIndexType()
Gets index type.static QueryIndexType
QueryIndexType. valueOf(String name)
Returns the enum constant of this type with the specified name.static QueryIndexType[]
QueryIndexType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.ignite.cache with parameters of type QueryIndexType Modifier and Type Method Description QueryIndex
QueryIndex. setIndexType(QueryIndexType type)
Sets index type.Constructors in org.apache.ignite.cache with parameters of type QueryIndexType Constructor Description QueryIndex(String field, QueryIndexType type)
Creates index for one field.QueryIndex(String field, QueryIndexType type, boolean asc)
Creates index for one field.QueryIndex(String field, QueryIndexType type, boolean asc, String name)
Creates index for one field.QueryIndex(Collection<String> fields, QueryIndexType type)
Creates index for a collection of fields.QueryIndex(LinkedHashMap<String,Boolean> fields, QueryIndexType type)
Creates index for a collection of fields.
-