public enum MeetingPointEnumeration extends Enum<MeetingPointEnumeration>
Java class for MeetingPointEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MeetingPointEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
<enumeration value="meetingPoint"/>
<enumeration value="groupMeeting"/>
<enumeration value="schoolMeetingPoint"/>
<enumeration value="other"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
GROUP_MEETING |
MEETING_POINT |
OTHER |
SCHOOL_MEETING_POINT |
| Modifier and Type | Method and Description |
|---|---|
static MeetingPointEnumeration |
fromValue(String v) |
String |
value() |
static MeetingPointEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MeetingPointEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeetingPointEnumeration MEETING_POINT
public static final MeetingPointEnumeration GROUP_MEETING
public static final MeetingPointEnumeration SCHOOL_MEETING_POINT
public static final MeetingPointEnumeration OTHER
public static MeetingPointEnumeration[] values()
for (MeetingPointEnumeration c : MeetingPointEnumeration.values()) System.out.println(c);
public static MeetingPointEnumeration 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 MeetingPointEnumeration fromValue(String v)
Copyright © 2018 Entur AS. All rights reserved.