用于设置枚举的字符串值
我想通过使用其值之一作为输入来设置枚举类型:
这是我正在使用的代码,
package models;
import models.crudsiena.SienaSupport;
import siena.*;
public class Item extends SienaSupport {
@Id
public Long id;
public static enum Type{
A,
B
};
public Type itemType;
public Item(String itemType) {
this.itemType = Type.valueOf(itemType);
}
}
当我尝试使用 new Item("A")
它返回我一个发生 NullPointerException:名称为 null
I would like to set an enum type by using one of its values as an input :
This is the code i'm using,
package models;
import models.crudsiena.SienaSupport;
import siena.*;
public class Item extends SienaSupport {
@Id
public Long id;
public static enum Type{
A,
B
};
public Type itemType;
public Item(String itemType) {
this.itemType = Type.valueOf(itemType);
}
}
When I try to use new Item("A")
it returns me a NullPointerException occured : Name is null
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: