当前位置: 首页>>代码示例>>Java>>正文


Java Any类代码示例

本文整理汇总了Java中org.hibernate.annotations.Any的典型用法代码示例。如果您正苦于以下问题:Java Any类的具体用法?Java Any怎么用?Java Any使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Any类属于org.hibernate.annotations包,在下文中一共展示了Any类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getAnnotatedObj

import org.hibernate.annotations.Any; //导入依赖的package包/类
/**
 * @return the annotatedObj
 */
@Any(metaColumn = @Column(name = "annotatedObjType"), optional = true,
		fetch = FetchType.LAZY,metaDef = "AnnotationMetaDef")
@JoinColumn(name = "annotatedObjId", nullable = true)
@JsonSerialize(using = AnnotatableObjectSerializer.class)
public Base getAnnotatedObj() {
	return annotatedObj;
}
 
开发者ID:RBGKew,项目名称:eMonocot,代码行数:11,代码来源:Annotation.java

示例2: getCommentPage

import org.hibernate.annotations.Any; //导入依赖的package包/类
/**
 * @return the commentPage
 */
@Any(metaColumn = @Column(name = "commentPage_type"),
		fetch = FetchType.LAZY, metaDef = "CommentMetaDef")
@JoinColumn(name = "commentPage_id", nullable = true)
@JsonSerialize(using = AnnotatableObjectSerializer.class)
public Base getCommentPage() {
	return commentPage;
}
 
开发者ID:RBGKew,项目名称:eMonocot,代码行数:11,代码来源:Comment.java

示例3: getAboutData

import org.hibernate.annotations.Any; //导入依赖的package包/类
/**
 * @return the aboutData
 */

@Any(metaColumn = @Column(name = "aboutData_type"),
		fetch = FetchType.LAZY, metaDef = "CommentMetaDef")
@JoinColumn(name = "aboutData_id", nullable = true)
@JsonSerialize(using = AnnotatableObjectSerializer.class)
public Base getAboutData() {
	return aboutData;
}
 
开发者ID:RBGKew,项目名称:eMonocot,代码行数:12,代码来源:Comment.java

示例4: getMyStuff

import org.hibernate.annotations.Any; //导入依赖的package包/类
@Any(metaColumn = @Column(name = "property_type"))
@AnyMetaDef(idType = "long", metaType = "string", metaValues = {
        @MetaValue(targetEntity = example.Tractor.class, value = "tractor"),
        @MetaValue(targetEntity = example.Smartphone.class, value = "smartphone")
})
@JoinColumn(name = "property_id")
@ToOne
public Device getMyStuff() {
    return myStuff;
}
 
开发者ID:yahoo,项目名称:elide,代码行数:11,代码来源:Property.java

示例5: MappingInformation

import org.hibernate.annotations.Any; //导入依赖的package包/类
MappingInformation(final AttributeAccessor attribute) {
	final OneToOne oneToOne = attribute.getAnnotation(OneToOne.class);
	final NotNull notNull = attribute.getAnnotation(NotNull.class);
	if (oneToOne != null) {
		this.optional = oneToOne.optional() && notNull == null;
		this.mappedBy = oneToOne.mappedBy();
		this.anyMetaColumn = null;
	} else {
		this.mappedBy = "";
		final ManyToOne manyToOne = attribute.getAnnotation(ManyToOne.class);
		if (manyToOne != null) {
			this.optional = manyToOne.optional() && notNull == null;
			this.anyMetaColumn = null;
		} else {
			final Any any = attribute.getAnnotation(Any.class);
			if (any != null) {
				this.optional = any.optional() && notNull == null;
				this.anyMetaColumn = any.metaColumn().name();
			} else {
				final ManyToAny manyToAny = attribute.getAnnotation(ManyToAny.class);
				if (manyToAny == null) {
					throw new IllegalArgumentException(
							attribute + " is neither declared as OneToOne nor ManyToOne");
				}
				this.optional = notNull == null;
				this.anyMetaColumn = manyToAny.metaColumn().name();
			}
		}
	}
}
 
开发者ID:liefke,项目名称:org.fastnate,代码行数:31,代码来源:EntityProperty.java

示例6: getAnnotatedObj

import org.hibernate.annotations.Any; //导入依赖的package包/类
@Any(metaColumn = @Column(name = "annotatedObjType"), optional = true, fetch = FetchType.LAZY,metaDef = "AnnotationMetaDef")
@JoinColumn(name = "annotatedObjId", nullable = true)
@JsonSerialize(using = AnnotatableObjectSerializer.class)
public Base getAnnotatedObj() {
	return annotatedObj;
}
 
开发者ID:RBGKew,项目名称:powop,代码行数:7,代码来源:Annotation.java

示例7: isEntityProperty

import org.hibernate.annotations.Any; //导入依赖的package包/类
/**
 * Indicates that the given attribute references an entity and may be used by an {@link EntityProperty}.
 *
 * @param attribute
 *            accessor of the attribute to check
 * @return {@code true} if an {@link EntityProperty} may be created for the given attribute
 */
static boolean isEntityProperty(final AttributeAccessor attribute) {
	return attribute.isAnnotationPresent(OneToOne.class) || attribute.isAnnotationPresent(ManyToOne.class)
			|| attribute.isAnnotationPresent(Any.class) || attribute.isAnnotationPresent(ManyToAny.class);
}
 
开发者ID:liefke,项目名称:org.fastnate,代码行数:12,代码来源:EntityProperty.java


注:本文中的org.hibernate.annotations.Any类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。