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