我们团队有一个Java class
只用于常量值的共享
当任何开发人员需要添加一个常量
时他会在这个类中添加一条记录
public class Constants_Class {
public static final String Constant1 = "value1";
public static final String Constant2 = "value2";
public static final String Constant3 = "value3";
// Need to prevent that in Development time - NOT Run time
public static final String Constant4 = "value1"; // value inserted before
}
问题是
我们需要在开发时间阻止任何开发人员
添加一个新的常量,它的值插入到
//需要唯一常量值之前有什么
建议吗??