public static enum RaptorWorkerTimetable.BoardingAssumption extends Enum<RaptorWorkerTimetable.BoardingAssumption>
| Enum Constant and Description |
|---|
BEST_CASE |
FIXED |
HALF_HEADWAY |
PROPORTION |
RANDOM |
WORST_CASE |
| Modifier and Type | Field and Description |
|---|---|
static long |
serialVersionUID |
| Modifier and Type | Method and Description |
|---|---|
static RaptorWorkerTimetable.BoardingAssumption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RaptorWorkerTimetable.BoardingAssumption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RaptorWorkerTimetable.BoardingAssumption BEST_CASE
public static final RaptorWorkerTimetable.BoardingAssumption WORST_CASE
public static final RaptorWorkerTimetable.BoardingAssumption HALF_HEADWAY
public static final RaptorWorkerTimetable.BoardingAssumption FIXED
public static final RaptorWorkerTimetable.BoardingAssumption PROPORTION
public static final RaptorWorkerTimetable.BoardingAssumption RANDOM
public static final long serialVersionUID
public static RaptorWorkerTimetable.BoardingAssumption[] values()
for (RaptorWorkerTimetable.BoardingAssumption c : RaptorWorkerTimetable.BoardingAssumption.values()) System.out.println(c);
public static RaptorWorkerTimetable.BoardingAssumption 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 © 2018. All rights reserved.