从枚举映射到泛型的类型

时间:2013-05-02 09:42:10

标签: java generics jaxb

我正在编写一个类,它将数据(按接口定义)写入不同的xml输出格式(不同的JAXB类)。 所有支持的类型都存储在Enum(SupportedTypes)中。 Enum存储相应的JAXB-Class。 枚举看起来像这样:

public enum Types {
/**
 * Invoice from hospitals.
 */
Type1(...generatedClasses.invoice.hospital400.request.RequestType.class),
/**
 * Invoice from hospital but with MediData's quality extensions. The
 * response has no extensions.
 */
Type2(...generatedClasses.invoice.hospital400_QO.request.RequestType.class);

/**
 * Class for request. represents the root element in corresponding xml.
 */
private Class<?> rType;

/**
 * 
 * @param requestType
 *            class of corresponding request type
 */
private InvoiceTypes(final Class<?> requestType) {
    this.requestType = requestType;
}

/**
 * @return the requestType
 */
public final Class<?> getRequestType() {
    return requestType;
}

}

我的问题是如何使用这种类型来实例化类似JAXBElement的类型泛型。 typeEnum作为参数给出,我想创建JAXBElement但这显然不起作用。 现在我被卡住了。如何构建这样的构造函数或方法。

事先提前

编辑以澄清:

让我们假设您创建了一个支持不同类型的类(“ClassForTypes”) - 无论它对它们做什么(ItsClass,SpecialClass,MyClass)。 api不会发布那些类(它们非常具体),而是发布一个“TypeEnum”(TypeOne,TypeTwo,TypeThree),它存储类的类型(TheirClass,SpecialClass,MyClass)。 在ClassForTypes的构造时,它将使用给定的TypeEnum创建一个让我们说List<type saved in enum>。如何构造这样的ClassForTypes或它的构造函数?

一些示例代码(不起作用): 上面的枚举我想用这种方式:

public class Blub{

    public Blub(Types type){
        List<type.getRequestType> typedList = new ArrayList...
    }

}

这不起作用。但是列表的类型在编译时是已知的(因为它存储在枚举中?)。有没有办法静态存储类型并使用它来获取类型通用?我不希望api用户知道用户应该只知道通过枚举提供的“支持类型”的单个请求类型。

1 个答案:

答案 0 :(得分:0)

您的问题不清楚您想要做什么。您是否尝试为枚举添加功能?像这样的东西?

public enum Types {
  Type1(String.class) {
    @Override
    public Object make () {
      return new String();
    }
  },
  Type2(Integer.class) {
    @Override
    public Object make () {
      return new Integer(0);
    }
  };

  private Class<?> rType;

  Types(final Class<?> requestType) {
    this.rType = requestType;
  }

  public final Class<?> getRequestType() {
    return rType;
  }

  // All types must have a make method.
  public abstract Object make();
}