Enum SolrFacetConfig.ValueName
- java.lang.Object
-
- java.lang.Enum<SolrFacetConfig.ValueName>
-
- org.alfresco.repo.search.impl.solr.facet.SolrFacetConfig.ValueName
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SolrFacetConfig.ValueName>
- Enclosing class:
- SolrFacetConfig
public static enum SolrFacetConfig.ValueName extends java.lang.Enum<SolrFacetConfig.ValueName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PROP_DISPLAY_CONTROLPROP_DISPLAY_NAMEPROP_FILTER_IDPROP_HIT_THRESHOLDPROP_IS_ENABLEDPROP_MAX_FILTERSPROP_MIN_FILTER_VALUE_LENGTHPROP_SCOPEPROP_SCOPED_SITESPROP_SORTBY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetPropValueName(java.lang.String facetField)static SolrFacetConfig.ValueNamevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SolrFacetConfig.ValueName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROP_FILTER_ID
public static final SolrFacetConfig.ValueName PROP_FILTER_ID
-
PROP_DISPLAY_NAME
public static final SolrFacetConfig.ValueName PROP_DISPLAY_NAME
-
PROP_MAX_FILTERS
public static final SolrFacetConfig.ValueName PROP_MAX_FILTERS
-
PROP_HIT_THRESHOLD
public static final SolrFacetConfig.ValueName PROP_HIT_THRESHOLD
-
PROP_MIN_FILTER_VALUE_LENGTH
public static final SolrFacetConfig.ValueName PROP_MIN_FILTER_VALUE_LENGTH
-
PROP_SORTBY
public static final SolrFacetConfig.ValueName PROP_SORTBY
-
PROP_SCOPE
public static final SolrFacetConfig.ValueName PROP_SCOPE
-
PROP_SCOPED_SITES
public static final SolrFacetConfig.ValueName PROP_SCOPED_SITES
-
PROP_IS_ENABLED
public static final SolrFacetConfig.ValueName PROP_IS_ENABLED
-
PROP_DISPLAY_CONTROL
public static final SolrFacetConfig.ValueName PROP_DISPLAY_CONTROL
-
-
Method Detail
-
values
public static SolrFacetConfig.ValueName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SolrFacetConfig.ValueName c : SolrFacetConfig.ValueName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SolrFacetConfig.ValueName valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getPropValueName
public java.lang.String getPropValueName(java.lang.String facetField)
-
-