Class Facet
- java.lang.Object
-
- com.hybris.cockpitng.config.refineby.jaxb.Facet
-
public class Facet extends java.lang.ObjectJava class for facet complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="facet"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="parameter" type="{http://www.hybris.com/cockpitng/config/refineBy}parameter" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="renderer" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="merge-mode" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Facet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetMergeMode()Gets the value of the mergeMode property.java.lang.StringgetName()Gets the value of the name property.java.util.List<Parameter>getParameter()Gets the value of the parameter property.java.lang.StringgetRenderer()Gets the value of the renderer property.voidsetMergeMode(java.lang.String value)Sets the value of the mergeMode property.voidsetName(java.lang.String value)Sets the value of the name property.voidsetRenderer(java.lang.String value)Sets the value of the renderer property.
-
-
-
Field Detail
-
parameter
protected java.util.List<Parameter> parameter
-
name
protected java.lang.String name
-
renderer
protected java.lang.String renderer
-
mergeMode
protected java.lang.String mergeMode
-
-
Method Detail
-
getParameter
public java.util.List<Parameter> getParameter()
Gets the value of the parameter property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the parameter property.For example, to add a new item, do as follows:
getParameter().add(newItem);Objects of the following type(s) are allowed in the list
Parameter
-
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getRenderer
public java.lang.String getRenderer()
Gets the value of the renderer property.- Returns:
- possible object is
String
-
setRenderer
public void setRenderer(java.lang.String value)
Sets the value of the renderer property.- Parameters:
value- allowed object isString
-
getMergeMode
public java.lang.String getMergeMode()
Gets the value of the mergeMode property.- Returns:
- possible object is
String
-
setMergeMode
public void setMergeMode(java.lang.String value)
Sets the value of the mergeMode property.- Parameters:
value- allowed object isString
-
-