Module org.apache.arrow.vector
Interface DictionaryProvider
- All Known Implementing Classes:
ArrowFileReader
,ArrowReader
,ArrowStreamReader
,DictionaryProvider.MapDictionaryProvider
,JsonFileReader
public interface DictionaryProvider
A manager for association of dictionary IDs to their corresponding
Dictionary
.-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic class
Implementation ofDictionaryProvider
that is backed by a hash-map. -
Method Summary
Modifier and TypeMethodDescriptionGet all dictionary IDs.lookup
(long id) Return the dictionary for the given ID.
-
Method Details
-
lookup
Return the dictionary for the given ID. -
getDictionaryIds
Get all dictionary IDs.
-