Interface IndexingItemConfiguration
-
- All Known Implementing Classes:
IndexingItemConfigurationImpl
public interface IndexingItemConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IndexedItemValueNormalizerfindNormalizer(@Nullable String index)IndexedItemValueNormalizergetDefaultNormalizer()@NotNull StringgetName()@NotNull Collection<IndexedItemValueNormalizer>getNormalizers()@NotNull ItemPathgetPath()@NotNull ItemNamegetQualifiedName()
-
-
-
Method Detail
-
getName
@NotNull @NotNull String getName()
-
getQualifiedName
@NotNull @NotNull ItemName getQualifiedName()
-
getPath
@NotNull @NotNull ItemPath getPath()
-
getNormalizers
@NotNull @NotNull Collection<IndexedItemValueNormalizer> getNormalizers()
-
findNormalizer
IndexedItemValueNormalizer findNormalizer(@Nullable @Nullable String index) throws ConfigurationException
- Throws:
ConfigurationException
-
getDefaultNormalizer
IndexedItemValueNormalizer getDefaultNormalizer() throws ConfigurationException
- Throws:
ConfigurationException
-
-