All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.org.acbs.siri20.PyschosensoryNeedEnumeration Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2025.01.07 at 02:19:39 PM UTC 
//


package uk.org.acbs.siri20;

import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for PyschosensoryNeedEnumeration. * *

The following schema fragment specifies the expected content contained within this class. *

 * <simpleType name="PyschosensoryNeedEnumeration">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
 *     <enumeration value="visualImpairment"/>
 *     <enumeration value="auditoryImpairment"/>
 *     <enumeration value="cognitiveInputImpairment"/>
 *     <enumeration value="averseToLifts"/>
 *     <enumeration value="averseToEscalators"/>
 *     <enumeration value="averseToConfinedSpaces"/>
 *     <enumeration value="averseToCrowds"/>
 *     <enumeration value="otherPsychosensoryNeed"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "PyschosensoryNeedEnumeration") @XmlEnum public enum PyschosensoryNeedEnumeration { @XmlEnumValue("visualImpairment") VISUAL_IMPAIRMENT("visualImpairment"), @XmlEnumValue("auditoryImpairment") AUDITORY_IMPAIRMENT("auditoryImpairment"), @XmlEnumValue("cognitiveInputImpairment") COGNITIVE_INPUT_IMPAIRMENT("cognitiveInputImpairment"), @XmlEnumValue("averseToLifts") AVERSE_TO_LIFTS("averseToLifts"), @XmlEnumValue("averseToEscalators") AVERSE_TO_ESCALATORS("averseToEscalators"), @XmlEnumValue("averseToConfinedSpaces") AVERSE_TO_CONFINED_SPACES("averseToConfinedSpaces"), @XmlEnumValue("averseToCrowds") AVERSE_TO_CROWDS("averseToCrowds"), @XmlEnumValue("otherPsychosensoryNeed") OTHER_PSYCHOSENSORY_NEED("otherPsychosensoryNeed"); private final String value; PyschosensoryNeedEnumeration(String v) { value = v; } public String value() { return value; } public static PyschosensoryNeedEnumeration fromValue(String v) { for (PyschosensoryNeedEnumeration c: PyschosensoryNeedEnumeration.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy