org.eclipse.persistence.internal.oxm.QNameInheritancePolicy.shouldUseClassNameAsIndicator()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(176)

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

QNameInheritancePolicy.shouldUseClassNameAsIndicator介绍

暂无

代码示例

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

if (!this.shouldUseClassNameAsIndicator() && (namespaceResolver != null)) {

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

((XMLRecord) rowFromDatabase).setSession(session);
if (hasClassExtractor() || shouldUseClassNameAsIndicator()) {
  return super.classFromRow(rowFromDatabase, session);

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

if (!this.shouldUseClassNameAsIndicator()){
  if(classIndicatorField != null){
    XPathFragment frag = ((XMLField) classIndicatorField).getXPathFragment();

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

if (!this.shouldUseClassNameAsIndicator()){ 
  if(classIndicatorField != null){
    XPathFragment frag = ((XMLField) classIndicatorField).getXPathFragment();

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

if (hasClassExtractor() || shouldUseClassNameAsIndicator()) {
  return super.classFromRow(rowFromDatabase, session);

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

if (hasClassExtractor() || shouldUseClassNameAsIndicator()) {
  return super.classFromRow(rowFromDatabase, session);

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

setClassIndicatorField(getDescriptor().buildField(getClassIndicatorField()));
if (shouldUseClassNameAsIndicator()) {
  getClassIndicatorField().setType(CoreClassConstants.STRING);
} else if (!getClassIndicatorMapping().isEmpty()) {

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

setClassIndicatorField(getDescriptor().buildField(getClassIndicatorField()));
if (shouldUseClassNameAsIndicator()) {
  getClassIndicatorField().setType(CoreClassConstants.STRING);
} else if (!getClassIndicatorMapping().isEmpty()) {

相关文章