Interface SnIndexerFieldWrapper
-
- All Known Implementing Classes:
DefaultSnIndexerFieldWrapper
public interface SnIndexerFieldWrapperWrapper for fields used during the indexing process.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SnFieldgetField()Returns the field.java.lang.StringgetFieldId()Returns the field id.java.util.List<SnQualifier>getQualifiers()Returns the qualifiers.java.lang.StringgetValueProviderId()Returns the value provider id.java.util.Map<java.lang.String,java.lang.String>getValueProviderParameters()Returns the value provider parameters.booleanisLocalized()Returns whether the field is localized.booleanisMultiValued()Returns whether the field is multi-valued.booleanisQualified()Returns whether the field is qualified.
-
-
-
Method Detail
-
getFieldId
java.lang.String getFieldId()
Returns the field id.- Returns:
- the field id
-
getField
SnField getField()
Returns the field.- Returns:
- the field
-
getValueProviderId
java.lang.String getValueProviderId()
Returns the value provider id.- Returns:
- the value provider
-
getValueProviderParameters
java.util.Map<java.lang.String,java.lang.String> getValueProviderParameters()
Returns the value provider parameters.- Returns:
- the value provider parameters
-
isLocalized
boolean isLocalized()
Returns whether the field is localized.- Returns:
trueif the field is localized,falseotherwise.
-
isQualified
boolean isQualified()
Returns whether the field is qualified.- Returns:
trueif the field is qualified,falseotherwise.
-
isMultiValued
boolean isMultiValued()
Returns whether the field is multi-valued.- Returns:
trueif the field is multi-valued,falseotherwise.
-
getQualifiers
java.util.List<SnQualifier> getQualifiers()
Returns the qualifiers.- Returns:
- the qualifiers.
-
-