本文整理汇总了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;
}
示例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;
}
示例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;
}
示例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;
}
示例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();
}
}
}
}
示例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;
}
示例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);
}