Package eu.openaire.oaf.model.base
Class CitationsType
- java.lang.Object
-
- eu.openaire.oaf.model.base.CitationsType
-
- All Implemented Interfaces:
Serializable
public class CitationsType extends Object implements Serializable
Java class for citationsType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="citationsType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="citation" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="rawText" type="{http://www.w3.org/2001/XMLSchema}anyType"/> <element name="id" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> <attribute name="confidenceLevel" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> <attribute name="provenance" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="trust" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCitationsType.CitationJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected List<CitationsType.Citation>citationprotected Stringprovenanceprotected Stringtrust
-
Constructor Summary
Constructors Constructor Description CitationsType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<CitationsType.Citation>getCitation()Gets the value of the citation property.StringgetProvenance()Gets the value of the provenance property.StringgetTrust()Gets the value of the trust property.voidsetProvenance(String value)Sets the value of the provenance property.voidsetTrust(String value)Sets the value of the trust property.
-
-
-
Field Detail
-
citation
protected List<CitationsType.Citation> citation
-
provenance
protected String provenance
-
trust
protected String trust
-
-
Method Detail
-
getCitation
public List<CitationsType.Citation> getCitation()
Gets the value of the citation 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 citation property.For example, to add a new item, do as follows:
getCitation().add(newItem);Objects of the following type(s) are allowed in the list
CitationsType.Citation
-
getProvenance
public String getProvenance()
Gets the value of the provenance property.- Returns:
- possible object is
String
-
setProvenance
public void setProvenance(String value)
Sets the value of the provenance property.- Parameters:
value- allowed object isString
-
getTrust
public String getTrust()
Gets the value of the trust property.- Returns:
- possible object is
String
-
-