Class Icons
- java.lang.Object
-
- org.xwiki.icon.rest.model.jaxb.Icons
-
public class Icons extends Object
Stores a collection of icons metadatas.Java class for Icons complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Icons"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="icon" type="{http://www.xwiki.org/icon}Icon" maxOccurs="unbounded" minOccurs="0"/> <element name="missingIcons" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Icons()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Icon>
getIcons()
Gets the value of the icons property.List<String>
getMissingIcons()
Gets the value of the missingIcons property.Icons
withIcons(Collection<Icon> values)
Icons
withIcons(Icon... values)
Icons
withMissingIcons(String... values)
Icons
withMissingIcons(Collection<String> values)
-
-
-
Method Detail
-
getIcons
public List<Icon> getIcons()
Gets the value of the icons 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 icons property.For example, to add a new item, do as follows:
getIcons().add(newItem);
Objects of the following type(s) are allowed in the list
Icon
-
getMissingIcons
public List<String> getMissingIcons()
Gets the value of the missingIcons 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 missingIcons property.For example, to add a new item, do as follows:
getMissingIcons().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
withIcons
public Icons withIcons(Collection<Icon> values)
-
withMissingIcons
public Icons withMissingIcons(Collection<String> values)
-
-