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