我如何确保实现已创建接口的每个类的名称均不区分大小写(但保留大小写)。
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);
}