Package com.qfs.dic
Interface ISchemaDictionaryProvider
- All Known Implementing Classes:
SchemaDictionaryProvider
public interface ISchemaDictionaryProvider
Provider of
IDatastoreSchemaVersion's dictionaries.- Author:
- ActiveViam
-
Method Summary
Modifier and TypeMethodDescriptiongetDictionary(int storeId, int fieldIndex) Gets the dictionary of a field.default IDictionary<Object>getDictionary(StoreField field) Gets the dictionary of a field.default IDictionary<Object>getDictionary(String storeName, String fieldName) Gets the dictionary of a field.getStoreDictionaries(String storeName) Gets the dictionaries of a store.
-
Method Details
-
getDictionary
Gets the dictionary of a field.- Parameters:
storeId- store IdfieldIndex- position of the field in the store- Returns:
- the dictionary, or null if the field is not dictionarized
-
getDictionary
Gets the dictionary of a field.- Parameters:
storeName- store namefieldName- field name- Returns:
- the dictionary, or null if the field is not dictionarized
-
getDictionary
Gets the dictionary of a field.- Returns:
- the dictionary, or null if the field is not dictionarized
-
getStoreDictionaries
Gets the dictionaries of a store.- Parameters:
storeName- store name- Returns:
- the store dictionaries
-