Package org.xwiki.rest.model.jaxb
Class PropertyValues
- java.lang.Object
-
- org.xwiki.rest.model.jaxb.LinkCollection
-
- org.xwiki.rest.model.jaxb.PropertyValues
-
public class PropertyValues extends LinkCollection
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <extension base="{http://www.xwiki.org}LinkCollection"> <sequence> <element name="propertyValue" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<PropertyValue>
propertyValues
-
Fields inherited from class org.xwiki.rest.model.jaxb.LinkCollection
links
-
-
Constructor Summary
Constructors Constructor Description PropertyValues()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PropertyValue>
getPropertyValues()
Gets the value of the propertyValues property.PropertyValues
withLinks(Collection<Link> values)
PropertyValues
withLinks(Link... values)
PropertyValues
withPropertyValues(Collection<PropertyValue> values)
PropertyValues
withPropertyValues(PropertyValue... values)
-
Methods inherited from class org.xwiki.rest.model.jaxb.LinkCollection
getLinks
-
-
-
-
Field Detail
-
propertyValues
protected List<PropertyValue> propertyValues
-
-
Method Detail
-
getPropertyValues
public List<PropertyValue> getPropertyValues()
Gets the value of the propertyValues 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 propertyValues property.For example, to add a new item, do as follows:
getPropertyValues().add(newItem);
Objects of the following type(s) are allowed in the list
PropertyValue
-
withPropertyValues
public PropertyValues withPropertyValues(PropertyValue... values)
-
withPropertyValues
public PropertyValues withPropertyValues(Collection<PropertyValue> values)
-
withLinks
public PropertyValues withLinks(Link... values)
- Overrides:
withLinks
in classLinkCollection
-
withLinks
public PropertyValues withLinks(Collection<Link> values)
- Overrides:
withLinks
in classLinkCollection
-
-