public enum UserTypeEnumeration extends Enum<UserTypeEnumeration>
Java class for UserTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="UserTypeEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}normalizedString">
<enumeration value="adult"/>
<enumeration value="child"/>
<enumeration value="infant"/>
<enumeration value="senior"/>
<enumeration value="animal"/>
<enumeration value="anyone"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ADULT |
ANIMAL |
ANYONE |
CHILD |
INFANT |
SENIOR |
| Modifier and Type | Method and Description |
|---|---|
static UserTypeEnumeration |
fromValue(String v) |
String |
value() |
static UserTypeEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserTypeEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserTypeEnumeration ADULT
public static final UserTypeEnumeration CHILD
public static final UserTypeEnumeration INFANT
public static final UserTypeEnumeration SENIOR
public static final UserTypeEnumeration ANIMAL
public static final UserTypeEnumeration ANYONE
public static UserTypeEnumeration[] values()
for (UserTypeEnumeration c : UserTypeEnumeration.values()) System.out.println(c);
public static UserTypeEnumeration valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static UserTypeEnumeration fromValue(String v)
Copyright © 2018 Entur AS. All rights reserved.