Package | Description |
---|---|
model.environment.objects.flight |
Flight related classes.
|
Modifier and Type | Field and Description |
---|---|
private FlightType |
Flight.flightType
The flight type.
|
Modifier and Type | Method and Description |
---|---|
FlightType |
Flight.getFlightType()
Gets the flight type.
|
static FlightType |
FlightType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlightType[] |
FlightType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
Flight(FlightType flightType,
double flightTime,
GateArea gateArea,
java.util.Collection<Desk> checkInDesks,
QueuingArea checkInQueue,
QueuingArea checkpointQueue)
Creates a new flight.
|
Flight(FlightType flightType,
int size,
double flightTime,
GateArea gateArea,
java.util.Collection<Desk> checkInDesks,
QueuingArea checkInQueue,
QueuingArea checkpointQueue)
Creates a new flight.
|