Package eu.openaire.oaf.model.base
Class CategoryType
- java.lang.Object
-
- eu.openaire.oaf.model.base.LabeledIdElementType
-
- eu.openaire.oaf.model.base.CategoryType
-
- All Implemented Interfaces:
Serializable
public class CategoryType extends LabeledIdElementType implements Serializable
Java class for categoryType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="categoryType"> <complexContent> <extension base="{http://namespace.openaire.eu/oaf}labeledIdElementType"> <sequence maxOccurs="unbounded" minOccurs="0"> <element name="concept" type="{http://namespace.openaire.eu/oaf}conceptType"/> </sequence> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ConceptType>concept-
Fields inherited from class eu.openaire.oaf.model.base.LabeledIdElementType
id, label
-
-
Constructor Summary
Constructors Constructor Description CategoryType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ConceptType>getConcept()Gets the value of the concept property.-
Methods inherited from class eu.openaire.oaf.model.base.LabeledIdElementType
getId, getLabel, setId, setLabel
-
-
-
-
Field Detail
-
concept
protected List<ConceptType> concept
-
-
Method Detail
-
getConcept
public List<ConceptType> getConcept()
Gets the value of the concept 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 concept property.For example, to add a new item, do as follows:
getConcept().add(newItem);Objects of the following type(s) are allowed in the list
ConceptType
-
-