确保实现接口的每个类均不区分大小写(但保留大小写)

时间:2019-07-17 18:25:02

标签: java

我如何确保实现已创建接口的每个类的名称均不区分大小写(但保留大小写)。

public interface OpenmrsMetadata  {

    /**
     * @return the name
     */
    public String getName();

    /**
     * @param name the name to set
     */
    public void setName(String name);

    /**
     * @return the description
     */
    public String getDescription();

    /**
     * @param description the description to set
     */
    public void setDescription(String description);

}

0 个答案:

没有答案