All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.oliviercailloux.exercices.car.Person Maven / Gradle / Ivy

The newest version!
package io.github.oliviercailloux.exercices.car;

/**
 * A person with a name and a speed that we assume is the speed at which that person always
 * drives.
 */
public interface Person {
  public String getName();

  /**
   * Returns the speed at which that person drives, in km per hour.
   *
   * @return a strictly positive number
   */
  public int getFavoriteSpeed();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy