org.eclipse.persistence.internal.helper.Helper.getComponentTypeNameFromArrayString()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(4.0k)|赞(0)|评价(0)|浏览(118)

本文整理了Java中org.eclipse.persistence.internal.helper.Helper.getComponentTypeNameFromArrayString()方法的一些代码示例,展示了Helper.getComponentTypeNameFromArrayString()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Helper.getComponentTypeNameFromArrayString()方法的具体详情如下:
包路径:org.eclipse.persistence.internal.helper.Helper
类名称:Helper
方法名:getComponentTypeNameFromArrayString

Helper.getComponentTypeNameFromArrayString介绍

暂无

代码示例

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

protected void addTypeConversionConverterLines(NonreflectiveMethodDefinition method, String converterName, TypeConversionConverter converter) {
  if (converter.getObjectClassName() != null) {
    // Bug 5170735 - if a conversion object class is an array type, we need to use different notation
    // retrieve the component type from the converter's ocj
    String arrayComponentType = Helper.getComponentTypeNameFromArrayString(converter.getObjectClassName());
    if (arrayComponentType != null) {
      method.addLine(converterName + ".setObjectClass(" + arrayComponentType + "[].class);");
    } else {
      method.addLine(converterName + ".setObjectClass(" + converter.getObjectClassName() + ".class);");
    }
  }
  if (converter.getDataClassName() != null) {
    // Bug 5170735 - if a conversion data class is an array type, we need to use different notation
    String arrayComponentType = Helper.getComponentTypeNameFromArrayString(converter.getDataClassName());
    if (arrayComponentType != null) {
      method.addLine(converterName + ".setDataClass(" + arrayComponentType + "[].class);");
    } else {
      method.addLine(converterName + ".setDataClass(" + converter.getDataClassName() + ".class);");
    }
  }
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

protected void addTypeConversionConverterLines(NonreflectiveMethodDefinition method, String converterName, TypeConversionConverter converter) {
  if (converter.getObjectClassName() != null) {
    // Bug 5170735 - if a conversion object class is an array type, we need to use different notation
    // retrieve the component type from the converter's ocj
    String arrayComponentType = Helper.getComponentTypeNameFromArrayString(converter.getObjectClassName());
    if (arrayComponentType != null) {
      method.addLine(converterName + ".setObjectClass(" + arrayComponentType + "[].class);");
    } else {
      method.addLine(converterName + ".setObjectClass(" + converter.getObjectClassName() + ".class);");
    }
  }
  if (converter.getDataClassName() != null) {
    // Bug 5170735 - if a conversion data class is an array type, we need to use different notation
    String arrayComponentType = Helper.getComponentTypeNameFromArrayString(converter.getDataClassName());
    if (arrayComponentType != null) {
      method.addLine(converterName + ".setDataClass(" + arrayComponentType + "[].class);");
    } else {
      method.addLine(converterName + ".setDataClass(" + converter.getDataClassName() + ".class);");
    }
  }
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

protected void addTypeConversionConverterLines(NonreflectiveMethodDefinition method, String converterName, TypeConversionConverter converter) {
  if (converter.getObjectClassName() != null) {
    // Bug 5170735 - if a conversion object class is an array type, we need to use different notation
    // retrieve the component type from the converter's ocj
    String arrayComponentType = Helper.getComponentTypeNameFromArrayString(converter.getObjectClassName());
    if (arrayComponentType != null) {
      method.addLine(converterName + ".setObjectClass(" + arrayComponentType + "[].class);");
    } else {
      method.addLine(converterName + ".setObjectClass(" + converter.getObjectClassName() + ".class);");
    }
  }
  if (converter.getDataClassName() != null) {
    // Bug 5170735 - if a conversion data class is an array type, we need to use different notation
    String arrayComponentType = Helper.getComponentTypeNameFromArrayString(converter.getDataClassName());
    if (arrayComponentType != null) {
      method.addLine(converterName + ".setDataClass(" + arrayComponentType + "[].class);");
    } else {
      method.addLine(converterName + ".setDataClass(" + converter.getDataClassName() + ".class);");
    }
  }
}

相关文章

Helper类方法