cdc.applic.expressions.literals.Named Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-expressions Show documentation
Show all versions of cdc-applic-expressions Show documentation
Applicabilities Expressions.
package cdc.applic.expressions.literals;
import java.util.Comparator;
/**
* Interface implemented by objects that have a {@link Name}.
*
* @author Damien Carbonne
*/
public interface Named {
public static Comparator NAME_COMPARATOR =
Comparator.comparing(Named::getName);
/**
* @return The name of this object.
*/
public Name getName();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy