Files
FRO/api/src/main/java/ch/gtache/fro/BirdFamily.java

16 lines
218 B
Java

package ch.gtache.fro;
/**
* Represents a bird family
*/
@FunctionalInterface
public interface BirdFamily {
/**
* Returns the name of the family
*
* @return The name
*/
String name();
}