org.hibernate.mapping.Property.getCascadeStyle()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(5.8k)|赞(0)|评价(0)|浏览(71)

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

Property.getCascadeStyle介绍

暂无

代码示例

代码示例来源:origin: hibernate/hibernate-orm

private static CascadeStyle getCompositeCascadeStyle(CompositeType compositeType, String cascade) {
  if ( compositeType.isAnyType() ) {
    return getCascadeStyle( cascade );
  }
  int length = compositeType.getSubtypes().length;
  for ( int i=0; i<length; i++ ) {
    if ( compositeType.getCascadeStyle(i) != CascadeStyles.NONE ) {
      return CascadeStyles.ALL;
    }
  }
  return getCascadeStyle( cascade );
}

代码示例来源:origin: hibernate/hibernate-orm

private static CascadeStyle getCollectionCascadeStyle(Type elementType, String cascade) {
  if ( elementType.isComponentType() ) {
    return getCompositeCascadeStyle( (CompositeType) elementType, cascade );
  }
  else {
    return getCascadeStyle( cascade );
  }
}

代码示例来源:origin: hibernate/hibernate-orm

public CascadeStyle getCascadeStyle() throws MappingException {
  Type type = value.getType();
  if ( type.isComponentType() ) {
    return getCompositeCascadeStyle( (CompositeType) type, cascade );
  }
  else if ( type.isCollectionType() ) {
    return getCollectionCascadeStyle( ( (Collection) value ).getElement().getType(), cascade );
  }
  else {
    return getCascadeStyle( cascade );			
  }
}

代码示例来源:origin: hibernate/hibernate-orm

cascades.add( prop.getCascadeStyle() );

代码示例来源:origin: hibernate/hibernate-orm

/**
 * @deprecated See mainly {@link #buildEntityBasedAttribute}
 */
@Deprecated
public static StandardProperty buildStandardProperty(Property property, boolean lazyAvailable) {
  final Type type = property.getValue().getType();
  // we need to dirty check collections, since they can cause an owner
  // version number increment
  // we need to dirty check many-to-ones with not-found="ignore" in order
  // to update the cache (not the database), since in this case a null
  // entity reference can lose information
  boolean alwaysDirtyCheck = type.isAssociationType() &&
      ( (AssociationType) type ).isAlwaysDirtyChecked();
  return new StandardProperty(
      property.getName(),
      type,
      lazyAvailable && property.isLazy(),
      property.isInsertable(),
      property.isUpdateable(),
      property.getValueGenerationStrategy(),
      property.isOptional(),
      alwaysDirtyCheck || property.isUpdateable(),
      property.isOptimisticLocked(),
      property.getCascadeStyle(),
      property.getValue().getFetchMode()
  );
}

代码示例来源:origin: hibernate/hibernate-orm

.setDirtyCheckable( property.isUpdateable() && !lazy )
    .setVersionable( property.isOptimisticLocked() )
    .setCascadeStyle( property.getCascadeStyle() )
    .createInformation(),
unsavedValue

代码示例来源:origin: hibernate/hibernate-orm

.setDirtyCheckable( alwaysDirtyCheck || property.isUpdateable() )
.setVersionable( property.isOptimisticLocked() )
.setCascadeStyle( property.getCascadeStyle() )
.setFetchMode( property.getValue().getFetchMode() )
.createInformation()
.setDirtyCheckable( alwaysDirtyCheck || property.isUpdateable() )
.setVersionable( property.isOptimisticLocked() )
.setCascadeStyle( property.getCascadeStyle() )
.setFetchMode( property.getValue().getFetchMode() )
.createInformation()
.setDirtyCheckable( alwaysDirtyCheck || property.isUpdateable() )
.setVersionable( property.isOptimisticLocked() )
.setCascadeStyle( property.getCascadeStyle() )
.setFetchMode( property.getValue().getFetchMode() )
.createInformation()

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

private static CascadeStyle getCompositeCascadeStyle(CompositeType compositeType, String cascade) {
  if ( compositeType.isAnyType() ) {
    return getCascadeStyle( cascade );
  }
  int length = compositeType.getSubtypes().length;
  for ( int i=0; i<length; i++ ) {
    if ( compositeType.getCascadeStyle(i) != CascadeStyle.NONE ) {
      return CascadeStyle.ALL;
    }
  }
  return getCascadeStyle( cascade );
}

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core

private static CascadeStyle getCompositeCascadeStyle(CompositeType compositeType, String cascade) {
  if ( compositeType.isAnyType() ) {
    return getCascadeStyle( cascade );
  }
  int length = compositeType.getSubtypes().length;
  for ( int i=0; i<length; i++ ) {
    if ( compositeType.getCascadeStyle(i) != CascadeStyle.NONE ) {
      return CascadeStyle.ALL;
    }
  }
  return getCascadeStyle( cascade );
}

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

private static CascadeStyle getCollectionCascadeStyle(Type elementType, String cascade) {
  if ( elementType.isComponentType() ) {
    return getCompositeCascadeStyle( (CompositeType) elementType, cascade );
  }
  else {
    return getCascadeStyle( cascade );
  }
}

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core

private static CascadeStyle getCollectionCascadeStyle(Type elementType, String cascade) {
  if ( elementType.isComponentType() ) {
    return getCompositeCascadeStyle( (CompositeType) elementType, cascade );
  }
  else {
    return getCascadeStyle( cascade );
  }
}

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

public CascadeStyle getCascadeStyle() throws MappingException {
  Type type = value.getType();
  if ( type.isComponentType() ) {
    return getCompositeCascadeStyle( (CompositeType) type, cascade );
  }
  else if ( type.isCollectionType() ) {
    return getCollectionCascadeStyle( ( (Collection) value ).getElement().getType(), cascade );
  }
  else {
    return getCascadeStyle( cascade );			
  }
}

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core

public CascadeStyle getCascadeStyle() throws MappingException {
  Type type = value.getType();
  if ( type.isComponentType() ) {
    return getCompositeCascadeStyle( (CompositeType) type, cascade );
  }
  else if ( type.isCollectionType() ) {
    return getCollectionCascadeStyle( ( (Collection) value ).getElement().getType(), cascade );
  }
  else {
    return getCascadeStyle( cascade );			
  }
}

代码示例来源:origin: hibernate/hibernate

names[j] = prop.getName();
types[j] = prop.getType();
cascade[j] = prop.getCascadeStyle();
joinedFetch[j] = prop.getValue().getFetchMode();
nullabilities[j] = prop.isNullable();

代码示例来源:origin: jboss.jboss-embeddable-ejb3/hibernate-all

cascades.add( prop.getCascadeStyle() );

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

cascades.add( prop.getCascadeStyle() );

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core

cascades.add( prop.getCascadeStyle() );

相关文章

微信公众号

最新文章

更多