如何获取 XMLBeans 中的所有 Enum 值?

发布于 2024-07-09 05:43:53 字数 278 浏览 8 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月朦胧 2024-07-16 05:43:53

这对我有用:

for (int i = 1; i <= MyEnum.Enum.table.lastInt(); i++) 
{
  System.out.println(MyEnum.Enum.forInt(i));
}

This worked for me:

for (int i = 1; i <= MyEnum.Enum.table.lastInt(); i++) 
{
  System.out.println(MyEnum.Enum.forInt(i));
}
天邊彩虹 2024-07-16 05:43:53

这是获取它的另一种方法:

public static List<String> getEnumValueList(XmlString xmlString){
    List<String> values = new ArrayList<String>();
    SchemaStringEnumEntry valArr[] = xmlString.schemaType().getStringEnumEntries();
    for(SchemaStringEnumEntry val : valArr){
        values.add(val.getString());
    }
    return values;
}

因此,要获取 ModelType 的枚举值列表,我执行以下操作:

getEnumValueList(ModelType.Factory.newInstance());

Here is another way to get it :

public static List<String> getEnumValueList(XmlString xmlString){
    List<String> values = new ArrayList<String>();
    SchemaStringEnumEntry valArr[] = xmlString.schemaType().getStringEnumEntries();
    for(SchemaStringEnumEntry val : valArr){
        values.add(val.getString());
    }
    return values;
}

So, to get the list of enum values of ModelType, I do the following :

getEnumValueList(ModelType.Factory.newInstance());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文