Skip to content

Instantly share code, notes, and snippets.

@Filmaluco
Last active March 30, 2023 19:08
Show Gist options
  • Save Filmaluco/0009a7fc78501731ed7396e46f4c1189 to your computer and use it in GitHub Desktop.
Save Filmaluco/0009a7fc78501731ed7396e46f4c1189 to your computer and use it in GitHub Desktop.
public interface IFleet {
boolean addVehicle(Vehicle vehicle);
boolean removeVehicle(String licencePlate);
String getName();
String toStringSortByNumberOfPassengers();
String toStringSortByMaxLoad();
boolean contains(String licencePlate);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment