Uses of Class
at.jku.ssw.fp.airline.Flight
-
Packages that use Flight Package Description at.jku.ssw.fp.airline at.jku.ssw.fp.sect10_2 at.jku.ssw.fp.sect10_4 -
-
Uses of Flight in at.jku.ssw.fp.airline
Fields in at.jku.ssw.fp.airline declared as Flight Modifier and Type Field Description Flight
Offer. flight
The flight of the offerMethods in at.jku.ssw.fp.airline that return Flight Modifier and Type Method Description Flight
Agency. findFlight(Airline airline, String from, String to, LocalDate date)
Finds a flight provided by an airline.Flight
Airline. findFlight(String from, String to, LocalDate date)
Returns a flight provided by the airline.Methods in at.jku.ssw.fp.airline that return types with arguments of type Flight Modifier and Type Method Description CompletableFuture<Flight>
Airline. findFlightAsync(String from, String to, LocalDate date)
Returns a completable future for a flight provided by the airline.List<Flight>
Airline. findFlights(String from, String to, LocalDate date)
Returns a list of flights offered by the airline.Methods in at.jku.ssw.fp.airline with parameters of type Flight Modifier and Type Method Description Offer
Agency. getOffer(Flight flight)
Returns an offer for a flight.Offer
Airline. getOffer(Flight flight)
Returns a offer for a flight.Offer
Retailer. getOffer(Flight flight)
Returns an offer for a flight in a synchronous way.default CompletableFuture<Offer>
Retailer. getOfferAsync(Flight flight)
Returns a completable future for an offer for a flight.Constructors in at.jku.ssw.fp.airline with parameters of type Flight Constructor Description Offer(Retailer retailer, Flight flight, int price)
Constructor creating an offer. -
Uses of Flight in at.jku.ssw.fp.sect10_2
Methods in at.jku.ssw.fp.sect10_2 that return types with arguments of type Flight Modifier and Type Method Description (package private) static Optional<Flight>
Demo3_Maybe. findFlight(String from, String to, LocalDate date)
-
Uses of Flight in at.jku.ssw.fp.sect10_4
Methods in at.jku.ssw.fp.sect10_4 that return types with arguments of type Flight Modifier and Type Method Description (package private) static Observable<Flight>
Demo1_FlatMap. getFlightObservable(Airline airline, String from, String to, LocalDate date)
(package private) static Observable<Flight>
Demo1_FlatMap. getFlightObservableSync(Airline airline, String from, String to, LocalDate date)
(package private) static Observable<Flight>
Demo1_FlatMap. getFlightsObservable(Airline airline, String from, String to, LocalDate date)
-