
uk.org.ifopt.acsb.UserNeedStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ojp-java-model Show documentation
Show all versions of ojp-java-model Show documentation
Generates Java model from OJP xsds using jaxb.
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package uk.org.ifopt.acsb;
import java.math.BigInteger;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.opentripplanner.ojp.netex.OmitNullsToStringStyle;
/**
* Java class for UserNeedStructure complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UserNeedStructure", propOrder = {
"mobilityNeed",
"psychosensoryNeed",
"medicalNeed",
"encumbranceNeed",
"excluded",
"needRanking",
"extensions"
})
public class UserNeedStructure {
@XmlElement(name = "MobilityNeed")
@XmlSchemaType(name = "NMTOKEN")
protected MobilityEnumeration mobilityNeed;
@XmlElement(name = "PsychosensoryNeed")
@XmlSchemaType(name = "NMTOKEN")
protected PyschosensoryNeedEnumeration psychosensoryNeed;
@XmlElement(name = "MedicalNeed")
protected MedicalNeedEnumeration medicalNeed;
@XmlElement(name = "EncumbranceNeed")
@XmlSchemaType(name = "NMTOKEN")
protected EncumbranceEnumeration encumbranceNeed;
@XmlElement(name = "Excluded")
protected Boolean excluded;
@XmlElement(name = "NeedRanking")
protected BigInteger needRanking;
@XmlElement(name = "Extensions")
protected Object extensions;
/**
* Gets the value of the mobilityNeed property.
*
* @return
* possible object is
* {@link MobilityEnumeration }
*
*/
public MobilityEnumeration getMobilityNeed() {
return mobilityNeed;
}
/**
* Sets the value of the mobilityNeed property.
*
* @param value
* allowed object is
* {@link MobilityEnumeration }
*
*/
public void setMobilityNeed(MobilityEnumeration value) {
this.mobilityNeed = value;
}
/**
* Gets the value of the psychosensoryNeed property.
*
* @return
* possible object is
* {@link PyschosensoryNeedEnumeration }
*
*/
public PyschosensoryNeedEnumeration getPsychosensoryNeed() {
return psychosensoryNeed;
}
/**
* Sets the value of the psychosensoryNeed property.
*
* @param value
* allowed object is
* {@link PyschosensoryNeedEnumeration }
*
*/
public void setPsychosensoryNeed(PyschosensoryNeedEnumeration value) {
this.psychosensoryNeed = value;
}
/**
* Gets the value of the medicalNeed property.
*
* @return
* possible object is
* {@link MedicalNeedEnumeration }
*
*/
public MedicalNeedEnumeration getMedicalNeed() {
return medicalNeed;
}
/**
* Sets the value of the medicalNeed property.
*
* @param value
* allowed object is
* {@link MedicalNeedEnumeration }
*
*/
public void setMedicalNeed(MedicalNeedEnumeration value) {
this.medicalNeed = value;
}
/**
* Gets the value of the encumbranceNeed property.
*
* @return
* possible object is
* {@link EncumbranceEnumeration }
*
*/
public EncumbranceEnumeration getEncumbranceNeed() {
return encumbranceNeed;
}
/**
* Sets the value of the encumbranceNeed property.
*
* @param value
* allowed object is
* {@link EncumbranceEnumeration }
*
*/
public void setEncumbranceNeed(EncumbranceEnumeration value) {
this.encumbranceNeed = value;
}
/**
* Gets the value of the excluded property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isExcluded() {
return excluded;
}
/**
* Sets the value of the excluded property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setExcluded(Boolean value) {
this.excluded = value;
}
/**
* Gets the value of the needRanking property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getNeedRanking() {
return needRanking;
}
/**
* Sets the value of the needRanking property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setNeedRanking(BigInteger value) {
this.needRanking = value;
}
/**
* Gets the value of the extensions property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getExtensions() {
return extensions;
}
/**
* Sets the value of the extensions property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setExtensions(Object value) {
this.extensions = value;
}
public UserNeedStructure withMobilityNeed(MobilityEnumeration value) {
setMobilityNeed(value);
return this;
}
public UserNeedStructure withPsychosensoryNeed(PyschosensoryNeedEnumeration value) {
setPsychosensoryNeed(value);
return this;
}
public UserNeedStructure withMedicalNeed(MedicalNeedEnumeration value) {
setMedicalNeed(value);
return this;
}
public UserNeedStructure withEncumbranceNeed(EncumbranceEnumeration value) {
setEncumbranceNeed(value);
return this;
}
public UserNeedStructure withExcluded(Boolean value) {
setExcluded(value);
return this;
}
public UserNeedStructure withNeedRanking(BigInteger value) {
setNeedRanking(value);
return this;
}
public UserNeedStructure withExtensions(Object value) {
setExtensions(value);
return this;
}
/**
* Generates a String representation of the contents of this type.
* This is an extension method, produced by the 'ts' xjc plugin
*
*/
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, OmitNullsToStringStyle.INSTANCE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy