Uses of Interface
org.teiid.core.index.IEntryResult
-
Packages that use IEntryResult Package Description org.teiid.core.index org.teiid.internal.core.index org.teiid.metadata.index -
-
Uses of IEntryResult in org.teiid.core.index
Methods in org.teiid.core.index that return IEntryResult Modifier and Type Method Description IEntryResult[]
IIndex. queryEntries(char[] pattern)
Returns all entries for a given word. -
Uses of IEntryResult in org.teiid.internal.core.index
Classes in org.teiid.internal.core.index that implement IEntryResult Modifier and Type Class Description class
EntryResult
Methods in org.teiid.internal.core.index that return IEntryResult Modifier and Type Method Description IEntryResult[]
Index. queryEntries(char[] prefix)
IEntryResult[]
Index. queryEntries(char[] prefix, boolean isCaseSensitive)
Overloaded the method in Index to allow a user to specify if the query should be case sensitive.IEntryResult[]
BlocksIndexInput. queryEntriesMatching(char[] pattern, boolean isCaseSensitive)
Overloaded the method in BlocksIndexInput to allow a user to specify if the query should be case sensitive.IEntryResult[]
Index. queryEntriesMatching(char[] prefix, boolean isCaseSensitive)
Overloaded the method in Index to allow a user to specify if the query should be case sensitive.IEntryResult[]
BlocksIndexInput. queryEntriesPrefixedBy(char[] prefix)
IEntryResult[]
BlocksIndexInput. queryEntriesPrefixedBy(char[] prefix, boolean isCaseSensitive)
Overloaded the method in BlocksIndexInput to allow a user to specify if the query should be case sensitive.abstract IEntryResult[]
IndexInput. queryEntriesPrefixedBy(char[] prefix)
Returns the list of the files containing the given word in the index. -
Uses of IEntryResult in org.teiid.metadata.index
Methods in org.teiid.metadata.index that return IEntryResult Modifier and Type Method Description static IEntryResult
RecordFactory. joinEntryResults(IEntryResult result, IEntryResult[] continuationResults, int blockSize)
Append the specified IEntryResult[] to the IEntryResult to create a single result representing an index entry that was split across multiple index records.static IEntryResult[]
SimpleIndexUtil. queryIndex(Index[] indexes, char[] pattern, boolean isPrefix, boolean isCaseSensitive, boolean returnFirstMatch)
Return all index file records that match the specified record prefix or pattern.Methods in org.teiid.metadata.index with parameters of type IEntryResult Modifier and Type Method Description static String
RecordFactory. extractUUIDString(IEntryResult result)
Extract the UUID string from the IEntryResultstatic int
RecordFactory. getContinuationSegmentNumber(String objectID, IEntryResult continuationResult)
List<AbstractMetadataRecord>
RecordFactory. getMetadataRecord(IEntryResult[] queryResult)
Return a collection ofAbstractMetadataRecord
instances for the result obtained from executingqueryEntriesMatching
static IEntryResult
RecordFactory. joinEntryResults(IEntryResult result, IEntryResult[] continuationResults, int blockSize)
Append the specified IEntryResult[] to the IEntryResult to create a single result representing an index entry that was split across multiple index records.
-