All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdc.applic.expressions.literals.Named Maven / Gradle / Ivy

The newest version!
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