public class

FacetValue

extends Grouping
java.lang.Object
   ↳ com.emc.documentum.fs.datamodel.core.query.Grouping
     ↳ com.emc.documentum.fs.datamodel.core.query.FacetValue

Class Overview

Java class for FacetValue complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="FacetValue">
   <complexContent>
     <extension base="{http://query.core.datamodel.fs.documentum.emc.com/}Grouping">
       <sequence>
         <element name="properties" type="{http://properties.core.datamodel.fs.documentum.emc.com/}PropertySet" minOccurs="0"/>
         <element name="subFacetValues" type="{http://query.core.datamodel.fs.documentum.emc.com/}FacetValue" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="count" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
     </extension>
   </complexContent>
 </complexType>
 

Summary

Fields
protected int count
protected PropertySet properties
protected List<FacetValue> subFacetValues
protected String value
Public Constructors
FacetValue()
Public Methods
int getCount()
Gets the value of the count property.
PropertySet getProperties()
Gets the value of the properties property.
List<FacetValue> getSubFacetValues()
Gets the value of the subFacetValues property.
String getValue()
Gets the value of the value property.
void setCount(int value)
Sets the value of the count property.
void setProperties(PropertySet value)
Sets the value of the properties property.
void setValue(String value)
Sets the value of the value property.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected int count

protected PropertySet properties

protected List<FacetValue> subFacetValues

protected String value

Public Constructors

public FacetValue ()

Public Methods

public int getCount ()

Gets the value of the count property.

public PropertySet getProperties ()

Gets the value of the properties property.

Returns

public List<FacetValue> getSubFacetValues ()

Gets the value of the subFacetValues 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 set method for the subFacetValues property.

For example, to add a new item, do as follows:

    getSubFacetValues().add(newItem);
 

Objects of the following type(s) are allowed in the list FacetValue

public String getValue ()

Gets the value of the value property.

Returns
  • possible object is String

public void setCount (int value)

Sets the value of the count property.

Parameters
value

public void setProperties (PropertySet value)

Sets the value of the properties property.

Parameters
value Allowed object is PropertySet

public void setValue (String value)

Sets the value of the value property.

Parameters
value Allowed object is String