如何获取 XMLBeans 中的所有 Enum 值?
Apache XMLBeans 可用于从 XML 架构定义文件 (XSD) 生成 Java 类和接口。 它还基于 StringEnumAbstractBase 和 StringEnumAbstractBase.Table 生成枚举来表示域值。 它们可以方便地仅输入有效值。 但是,我想获取所有这些值来生成 JCombobox、JTable 或 html 表。
是否有 XMLBeans API 调用来从生成的类中获取所有 Enum 值? 唯一可用的选择是某种 Java 反射吗?
谢谢
Apache XMLBeans can be used to generate Java classes and interfaces from XML Schema Definition files (XSD). It also generates Enums based on StringEnumAbstractBase and StringEnumAbstractBase.Table to represent domain values. They are handy for entering only valid values. However, I want to get all those values to generate a JCombobox, a JTable or a html table.
Is there a XMLBeans API call to get all Enum values from a generated class?
Is the only choice available some sort of Java reflection?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这对我有用:
This worked for me:
这是获取它的另一种方法:
因此,要获取 ModelType 的枚举值列表,我执行以下操作:
Here is another way to get it :
So, to get the list of enum values of ModelType, I do the following :