Package uk.org.acbs.siri13
Enum PyschosensoryNeedEnumeration
- java.lang.Object
-
- java.lang.Enum<PyschosensoryNeedEnumeration>
-
- uk.org.acbs.siri13.PyschosensoryNeedEnumeration
-
- All Implemented Interfaces:
Serializable,Comparable<PyschosensoryNeedEnumeration>
public enum PyschosensoryNeedEnumeration extends Enum<PyschosensoryNeedEnumeration>
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>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUDITORY_IMPAIRMENTAVERSE_TO_CONFINED_SPACESAVERSE_TO_CROWDSAVERSE_TO_ESCALATORSAVERSE_TO_LIFTSCOGNITIVE_INPUT_IMPAIRMENTOTHER_PSYCHOSENSORY_NEEDVISUAL_IMPAIRMENT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PyschosensoryNeedEnumerationfromValue(String v)Stringvalue()static PyschosensoryNeedEnumerationvalueOf(String name)Returns the enum constant of this type with the specified name.static PyschosensoryNeedEnumeration[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VISUAL_IMPAIRMENT
public static final PyschosensoryNeedEnumeration VISUAL_IMPAIRMENT
-
AUDITORY_IMPAIRMENT
public static final PyschosensoryNeedEnumeration AUDITORY_IMPAIRMENT
-
COGNITIVE_INPUT_IMPAIRMENT
public static final PyschosensoryNeedEnumeration COGNITIVE_INPUT_IMPAIRMENT
-
AVERSE_TO_LIFTS
public static final PyschosensoryNeedEnumeration AVERSE_TO_LIFTS
-
AVERSE_TO_ESCALATORS
public static final PyschosensoryNeedEnumeration AVERSE_TO_ESCALATORS
-
AVERSE_TO_CONFINED_SPACES
public static final PyschosensoryNeedEnumeration AVERSE_TO_CONFINED_SPACES
-
AVERSE_TO_CROWDS
public static final PyschosensoryNeedEnumeration AVERSE_TO_CROWDS
-
OTHER_PSYCHOSENSORY_NEED
public static final PyschosensoryNeedEnumeration OTHER_PSYCHOSENSORY_NEED
-
-
Method Detail
-
values
public static PyschosensoryNeedEnumeration[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PyschosensoryNeedEnumeration c : PyschosensoryNeedEnumeration.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PyschosensoryNeedEnumeration valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static PyschosensoryNeedEnumeration fromValue(String v)
-
-