本文整理了Java中org.eclipse.persistence.internal.helper.Helper.getComponentTypeNameFromArrayString()
方法的一些代码示例,展示了Helper.getComponentTypeNameFromArrayString()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Helper.getComponentTypeNameFromArrayString()
方法的具体详情如下:
包路径:org.eclipse.persistence.internal.helper.Helper
类名称: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);");
}
}
}
内容来源于网络,如有侵权,请联系作者删除!