Enum FacetDisplayType
- java.lang.Object
-
- java.lang.Enum<FacetDisplayType>
-
- com.funnelback.publicui.search.model.transaction.facet.FacetDisplayType
-
- All Implemented Interfaces:
Serializable
,Comparable<FacetDisplayType>
public enum FacetDisplayType extends Enum<FacetDisplayType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECKBOX
RADIO_BUTTON
SINGLE_DRILL_DOWN
TAB
UNKNOWN
-
Constructor Summary
Constructors Modifier Constructor Description private
FacetDisplayType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FacetDisplayType
getType(FacetSelectionType selectionType, FacetConstraintJoin constraintJoin, FacetValues values)
static FacetDisplayType
valueOf(String name)
Returns the enum constant of this type with the specified name.static FacetDisplayType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE_DRILL_DOWN
public static final FacetDisplayType SINGLE_DRILL_DOWN
-
CHECKBOX
public static final FacetDisplayType CHECKBOX
-
RADIO_BUTTON
public static final FacetDisplayType RADIO_BUTTON
-
TAB
public static final FacetDisplayType TAB
-
UNKNOWN
public static final FacetDisplayType UNKNOWN
-
-
Method Detail
-
values
public static FacetDisplayType[] 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 (FacetDisplayType c : FacetDisplayType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FacetDisplayType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getType
public static FacetDisplayType getType(FacetSelectionType selectionType, FacetConstraintJoin constraintJoin, FacetValues values)
-
-