org.fryske_akademy.teidictionaries.jaxb.PlaceName Maven / Gradle / Ivy
Show all versions of teidictionaries Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.05.06 at 05:51:07 PM CEST
//
package org.fryske_akademy.teidictionaries.jaxb;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <extension base="{http://www.tei-c.org/ns/1.0}macro.phraseSeq">
* <attGroup ref="{http://www.tei-c.org/ns/1.0}att.personal.attributes"/>
* <attGroup ref="{http://www.tei-c.org/ns/1.0}att.editLike.attributes"/>
* <attGroup ref="{http://www.tei-c.org/ns/1.0}att.typed.attributes"/>
* <attGroup ref="{http://www.tei-c.org/ns/1.0}att.global.attributes"/>
* <attGroup ref="{http://www.tei-c.org/ns/1.0}att.datable.attributes"/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "placeName")
public class PlaceName
extends MacroPhraseSeq
{
@XmlAttribute(name = "key")
protected String key;
@XmlAttribute(name = "ref")
protected List reves;
@XmlAttribute(name = "nymRef")
protected List nymReves;
@XmlAttribute(name = "role")
protected List roles;
@XmlAttribute(name = "sort")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger sort;
@XmlAttribute(name = "full")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String full;
@XmlAttribute(name = "evidence")
protected List evidences;
@XmlAttribute(name = "instant")
protected String instant;
@XmlAttribute(name = "subtype")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String subtype;
@XmlAttribute(name = "type")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String type;
@XmlAttribute(name = "id", namespace = "http://www.w3.org/XML/1998/namespace")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAttribute(name = "source")
protected List sources;
@XmlAttribute(name = "n")
protected String n;
@XmlAttribute(name = "space", namespace = "http://www.w3.org/XML/1998/namespace")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String space;
@XmlAttribute(name = "rend")
protected List rends;
@XmlAttribute(name = "style")
protected String style;
@XmlAttribute(name = "rendition")
protected List rendering;
@XmlAttribute(name = "cert")
protected String cert;
@XmlAttribute(name = "resp")
protected List resps;
@XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace")
protected String lang;
@XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
@XmlSchemaType(name = "anyURI")
protected String base;
@XmlAttribute(name = "period")
@XmlSchemaType(name = "anyURI")
protected String period;
@XmlAttribute(name = "from-iso")
protected String fromIso;
@XmlAttribute(name = "when-iso")
protected String whenIso;
@XmlAttribute(name = "notAfter-iso")
protected String notAfterIso;
@XmlAttribute(name = "to-iso")
protected String toIso;
@XmlAttribute(name = "notBefore-iso")
protected String notBeforeIso;
@XmlAttribute(name = "when-custom")
protected List whenCustoms;
@XmlAttribute(name = "datingPoint")
@XmlSchemaType(name = "anyURI")
protected String datingPoint;
@XmlAttribute(name = "to-custom")
protected List toCustoms;
@XmlAttribute(name = "notAfter-custom")
protected List notAfterCustoms;
@XmlAttribute(name = "notBefore-custom")
protected List notBeforeCustoms;
@XmlAttribute(name = "from-custom")
protected List fromCustoms;
@XmlAttribute(name = "datingMethod")
@XmlSchemaType(name = "anyURI")
protected String datingMethod;
@XmlAttribute(name = "calendar")
@XmlSchemaType(name = "anyURI")
protected String calendar;
@XmlAttribute(name = "notAfter")
protected String notAfter;
@XmlAttribute(name = "to")
protected String to;
@XmlAttribute(name = "notBefore")
protected String notBefore;
@XmlAttribute(name = "when")
protected String when;
@XmlAttribute(name = "from")
protected String from;
/**
* Gets the value of the key property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKey() {
return key;
}
/**
* Sets the value of the key property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKey(String value) {
this.key = value;
}
/**
* Gets the value of the reves 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 reves property.
*
*
* For example, to add a new item, do as follows:
*
* getReves().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getReves() {
if (reves == null) {
reves = new ArrayList();
}
return this.reves;
}
/**
* Gets the value of the nymReves 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 nymReves property.
*
*
* For example, to add a new item, do as follows:
*
* getNymReves().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getNymReves() {
if (nymReves == null) {
nymReves = new ArrayList();
}
return this.nymReves;
}
/**
* Gets the value of the roles 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 roles property.
*
*
* For example, to add a new item, do as follows:
*
* getRoles().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getRoles() {
if (roles == null) {
roles = new ArrayList();
}
return this.roles;
}
/**
* Gets the value of the sort property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getSort() {
return sort;
}
/**
* Sets the value of the sort property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSort(BigInteger value) {
this.sort = value;
}
/**
* Gets the value of the full property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFull() {
if (full == null) {
return "yes";
} else {
return full;
}
}
/**
* Sets the value of the full property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFull(String value) {
this.full = value;
}
/**
* Gets the value of the evidences 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 evidences property.
*
*
* For example, to add a new item, do as follows:
*
* getEvidences().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getEvidences() {
if (evidences == null) {
evidences = new ArrayList();
}
return this.evidences;
}
/**
* Gets the value of the instant property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstant() {
if (instant == null) {
return "false";
} else {
return instant;
}
}
/**
* Sets the value of the instant property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInstant(String value) {
this.instant = value;
}
/**
* Gets the value of the subtype property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSubtype() {
return subtype;
}
/**
* Sets the value of the subtype property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubtype(String value) {
this.subtype = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the sources 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 sources property.
*
*
* For example, to add a new item, do as follows:
*
* getSources().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getSources() {
if (sources == null) {
sources = new ArrayList();
}
return this.sources;
}
/**
* Gets the value of the n property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getN() {
return n;
}
/**
* Sets the value of the n property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setN(String value) {
this.n = value;
}
/**
* Gets the value of the space property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSpace() {
return space;
}
/**
* Sets the value of the space property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSpace(String value) {
this.space = value;
}
/**
* Gets the value of the rends 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 rends property.
*
*
* For example, to add a new item, do as follows:
*
* getRends().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getRends() {
if (rends == null) {
rends = new ArrayList();
}
return this.rends;
}
/**
* Gets the value of the style property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStyle() {
return style;
}
/**
* Sets the value of the style property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStyle(String value) {
this.style = value;
}
/**
* Gets the value of the rendering 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 rendering property.
*
*
* For example, to add a new item, do as follows:
*
* getRendering().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getRendering() {
if (rendering == null) {
rendering = new ArrayList();
}
return this.rendering;
}
/**
* Gets the value of the cert property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCert() {
return cert;
}
/**
* Sets the value of the cert property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCert(String value) {
this.cert = value;
}
/**
* Gets the value of the resps 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 resps property.
*
*
* For example, to add a new item, do as follows:
*
* getResps().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getResps() {
if (resps == null) {
resps = new ArrayList();
}
return this.resps;
}
/**
* Gets the value of the lang property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLang() {
return lang;
}
/**
* Sets the value of the lang property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLang(String value) {
this.lang = value;
}
/**
* Gets the value of the base property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBase() {
return base;
}
/**
* Sets the value of the base property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBase(String value) {
this.base = value;
}
/**
* Gets the value of the period property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPeriod() {
return period;
}
/**
* Sets the value of the period property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPeriod(String value) {
this.period = value;
}
/**
* Gets the value of the fromIso property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFromIso() {
return fromIso;
}
/**
* Sets the value of the fromIso property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFromIso(String value) {
this.fromIso = value;
}
/**
* Gets the value of the whenIso property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWhenIso() {
return whenIso;
}
/**
* Sets the value of the whenIso property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWhenIso(String value) {
this.whenIso = value;
}
/**
* Gets the value of the notAfterIso property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNotAfterIso() {
return notAfterIso;
}
/**
* Sets the value of the notAfterIso property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNotAfterIso(String value) {
this.notAfterIso = value;
}
/**
* Gets the value of the toIso property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getToIso() {
return toIso;
}
/**
* Sets the value of the toIso property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setToIso(String value) {
this.toIso = value;
}
/**
* Gets the value of the notBeforeIso property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNotBeforeIso() {
return notBeforeIso;
}
/**
* Sets the value of the notBeforeIso property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNotBeforeIso(String value) {
this.notBeforeIso = value;
}
/**
* Gets the value of the whenCustoms 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 whenCustoms property.
*
*
* For example, to add a new item, do as follows:
*
* getWhenCustoms().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getWhenCustoms() {
if (whenCustoms == null) {
whenCustoms = new ArrayList();
}
return this.whenCustoms;
}
/**
* Gets the value of the datingPoint property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDatingPoint() {
return datingPoint;
}
/**
* Sets the value of the datingPoint property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDatingPoint(String value) {
this.datingPoint = value;
}
/**
* Gets the value of the toCustoms 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 toCustoms property.
*
*
* For example, to add a new item, do as follows:
*
* getToCustoms().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getToCustoms() {
if (toCustoms == null) {
toCustoms = new ArrayList();
}
return this.toCustoms;
}
/**
* Gets the value of the notAfterCustoms 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 notAfterCustoms property.
*
*
* For example, to add a new item, do as follows:
*
* getNotAfterCustoms().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getNotAfterCustoms() {
if (notAfterCustoms == null) {
notAfterCustoms = new ArrayList();
}
return this.notAfterCustoms;
}
/**
* Gets the value of the notBeforeCustoms 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 notBeforeCustoms property.
*
*
* For example, to add a new item, do as follows:
*
* getNotBeforeCustoms().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getNotBeforeCustoms() {
if (notBeforeCustoms == null) {
notBeforeCustoms = new ArrayList();
}
return this.notBeforeCustoms;
}
/**
* Gets the value of the fromCustoms 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 fromCustoms property.
*
*
* For example, to add a new item, do as follows:
*
* getFromCustoms().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getFromCustoms() {
if (fromCustoms == null) {
fromCustoms = new ArrayList();
}
return this.fromCustoms;
}
/**
* Gets the value of the datingMethod property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDatingMethod() {
return datingMethod;
}
/**
* Sets the value of the datingMethod property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDatingMethod(String value) {
this.datingMethod = value;
}
/**
* Gets the value of the calendar property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCalendar() {
return calendar;
}
/**
* Sets the value of the calendar property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCalendar(String value) {
this.calendar = value;
}
/**
* Gets the value of the notAfter property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNotAfter() {
return notAfter;
}
/**
* Sets the value of the notAfter property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNotAfter(String value) {
this.notAfter = value;
}
/**
* Gets the value of the to property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTo() {
return to;
}
/**
* Sets the value of the to property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTo(String value) {
this.to = value;
}
/**
* Gets the value of the notBefore property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNotBefore() {
return notBefore;
}
/**
* Sets the value of the notBefore property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNotBefore(String value) {
this.notBefore = value;
}
/**
* Gets the value of the when property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWhen() {
return when;
}
/**
* Sets the value of the when property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWhen(String value) {
this.when = value;
}
/**
* Gets the value of the from property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFrom() {
return from;
}
/**
* Sets the value of the from property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFrom(String value) {
this.from = value;
}
}