![JAR search and dependency download from the Maven repository](/logo.png)
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