public enum BoardAlightType extends Enum<BoardAlightType>
Enum Constant and Description |
---|
DEFAULT
A regular boarding or alighting at a fixed-route transit stop.
|
DEVIATED
A boarding or alighting at which the vehicle deviates from its fixed route to drop off a
passenger.
|
FLAG_STOP
A flag-stop boarding or alighting, e.g.
|
Modifier and Type | Method and Description |
---|---|
static BoardAlightType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoardAlightType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoardAlightType DEFAULT
public static final BoardAlightType FLAG_STOP
public static final BoardAlightType DEVIATED
public static BoardAlightType[] values()
for (BoardAlightType c : BoardAlightType.values()) System.out.println(c);
public static BoardAlightType 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 nullCopyright © 2019. All rights reserved.