Uses of Class
org.apache.ignite.cache.QueryIndexType
-
Packages that use QueryIndexType Package Description org.apache.ignite.cache Contains main Data Grid APIs.org.apache.ignite.internal.management.cache org.apache.ignite.internal.processors.cache.query org.apache.ignite.internal.processors.odbc.jdbc org.apache.ignite.internal.processors.query org.apache.ignite.internal.processors.query.schema.management -
-
Uses of QueryIndexType in org.apache.ignite.cache
Methods in org.apache.ignite.cache that return QueryIndexType Modifier and Type Method Description static @Nullable QueryIndexTypeQueryIndexType. fromOrdinal(int ord)Efficiently gets enumerated value from its ordinal.QueryIndexTypeQueryIndex. getIndexType()Gets index type.static QueryIndexTypeQueryIndexType. 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 QueryIndexQueryIndex. 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. -
Uses of QueryIndexType in org.apache.ignite.internal.management.cache
Methods in org.apache.ignite.internal.management.cache that return QueryIndexType Modifier and Type Method Description QueryIndexTypeQueryIndex. getType() -
Uses of QueryIndexType in org.apache.ignite.internal.processors.cache.query
Methods in org.apache.ignite.internal.processors.cache.query that return QueryIndexType Modifier and Type Method Description QueryIndexTypeQueryEntityIndexDescriptor. type()Gets index type.Methods in org.apache.ignite.internal.processors.cache.query with parameters of type QueryIndexType Modifier and Type Method Description QueryEntityIndexDescriptorQueryEntityTypeDescriptor. addIndex(String idxName, QueryIndexType type, int inlineSize)Adds index. -
Uses of QueryIndexType in org.apache.ignite.internal.processors.odbc.jdbc
Methods in org.apache.ignite.internal.processors.odbc.jdbc that return QueryIndexType Modifier and Type Method Description QueryIndexTypeJdbcIndexMeta. type() -
Uses of QueryIndexType in org.apache.ignite.internal.processors.query
Methods in org.apache.ignite.internal.processors.query that return QueryIndexType Modifier and Type Method Description QueryIndexTypeGridQueryIndexDescriptor. type()Gets index type.QueryIndexTypeQueryIndexDescriptorImpl. type()Gets index type.QueryIndexTypeQuerySysIndexDescriptorImpl. type()Gets index type.Constructors in org.apache.ignite.internal.processors.query with parameters of type QueryIndexType Constructor Description QueryIndexDescriptorImpl(QueryTypeDescriptorImpl typDesc, String name, QueryIndexType type, int inlineSize)Constructor. -
Uses of QueryIndexType in org.apache.ignite.internal.processors.query.schema.management
Methods in org.apache.ignite.internal.processors.query.schema.management that return QueryIndexType Modifier and Type Method Description QueryIndexTypeIndexDescriptor. type()Methods in org.apache.ignite.internal.processors.query.schema.management with parameters of type QueryIndexType Modifier and Type Method Description static voidSchemaManager. registerIndexDescriptorFactory(QueryIndexType type, IndexDescriptorFactory factory)Register index descriptor factory for custom index type.static voidSchemaManager. unregisterIndexDescriptorFactory(QueryIndexType type)Unregister index descriptor factory for custom index type.Constructors in org.apache.ignite.internal.processors.query.schema.management with parameters of type QueryIndexType Constructor Description IndexDescriptor(TableDescriptor tbl, String name, QueryIndexType type, LinkedHashMap<String,IndexKeyDefinition> keyDefs, boolean isPk, boolean isAff, int inlineSize, Index idx)
-