shu*_*pta -1 java string enums
我想创建一个定义字符串变量的类,它只能有很少的预定义值.
public class Constraint{
String const; // I want this constraint value to be fixed to either of {greaterthan,lesserthan,greaterthanequalto or lesserthanequalto}
public Constraint(String const){
this.const = const;
}
}
Run Code Online (Sandbox Code Playgroud)
如果发送任何其他值,程序应该抛出错误.我想在这里使用enum这样的东西,但我想为Strings这样做.