Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class RbdlValueType implements Serializable {
- private static final long serialVersionUID = 4571961554580566759L;
- public String type;
- public String enumName;
- public RbdlValueType(String type, String enumName){
- this.type = type;
- this.enumName = enumName;
- if(!type.equals("enum")){
- this.enumName = null;
- }
- }
- public RbdlValueType(String type){
- this(type, null);
- }
- public RbdlValueType(){};
- }
Advertisement
Add Comment
Please, Sign In to add comment