cdc.applic.dictionaries.edit.EnNameItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-dictionaries-edit Show documentation
Show all versions of cdc-applic-dictionaries-edit Show documentation
Applicabilities Dictionaries Edition.
package cdc.applic.dictionaries.edit;
import java.util.Comparator;
/**
* Interface implemented by items that have a name.
*/
public interface EnNameItem extends EnElement {
public static final Comparator NAME_COMPARATOR =
Comparator.comparing(EnNameItem::getName);
/**
* @return The item name, possibly {@code null}.
*/
public String getName();
/**
* Set the item name ({@code null} is valid).
*
* @param name The name.
*/
public void setName(String name);
}