本文整理汇总了Java中org.hibernate.search.annotations.Analyze.NO属性的典型用法代码示例。如果您正苦于以下问题:Java Analyze.NO属性的具体用法?Java Analyze.NO怎么用?Java Analyze.NO使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.hibernate.search.annotations.Analyze
的用法示例。
在下文中一共展示了Analyze.NO属性的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getToName
/**
* Returns the to name.
*
* @return the to name
*/
@Fields({
@Field(index = Index.YES, analyze = Analyze.YES, store = Store.NO),
@Field(name = "toNameSort", index = Index.YES, analyze = Analyze.NO, store = Store.NO)
})
public String getToName() {
return toName;
}
开发者ID:WestCoastInformatics,项目名称:UMLS-Terminology-Server,代码行数:12,代码来源:ComponentInfoRelationshipJpa.java
示例2: getAudit
@Type(type = "org.openyu.commons.entity.usertype.AuditEntityUserType")
@Column(name = "audit", length = 570)
@Field(store = Store.YES, index = Index.YES, analyze = Analyze.NO)
@FieldBridge(impl = AuditEntityBridge.class)
public AuditEntity getAudit()
{
return audit;
}
示例3: getName
/**
* Returns the name.
*
* @return the name
*/
/* see superclass */
@Override
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public String getName() {
return name;
}
示例4: getToName
/**
* Returns the to term. For JAXB.
*
* @return the to term
*/
@Fields({
@Field(index = Index.YES, analyze = Analyze.YES, store = Store.NO),
@Field(name = "toNameSort", index = Index.YES, analyze = Analyze.NO, store = Store.NO)
})
public String getToName() {
return to == null ? null : to.getName();
}
示例5: getName
@Override
@Fields({
@Field(index = Index.YES, analyze = Analyze.YES, store = Store.NO),
@Field(name = "nameSort", index = Index.YES, analyze = Analyze.NO, store = Store.NO)
})
public String getName() {
return this.name;
}
示例6: getPublished
@Temporal(TemporalType.DATE)
@Field(analyze = Analyze.NO)
@DateBridge(resolution = Resolution.DAY)
public Date getPublished() {
return published;
}
示例7: getReport1Id
@Override
@FieldBridge(impl = LongBridge.class)
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public Long getReport1Id() {
return this.report1Id;
}
示例8: getIdentityCode
@Override
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public String getIdentityCode() {
return componentId + componentTerminology + hashcode + name + terminology
+ terminologyId;
}
示例9: getNameNorm
/**
* Returns the name norm.
*
* @return the name norm
*/
@XmlTransient
@Field(index = Index.YES, store = Store.NO, analyze = Analyze.NO)
public String getNameNorm() {
return ConfigUtility.normalize(name);
}
示例10: getSemanticType
@Override
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public String getSemanticType() {
return semanticType;
}
示例11: getToId
@Override
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public String getToId() {
return toId;
}
示例12: getLastModified
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
@Override
public Date getLastModified() {
return lastModified;
}
示例13: isObsolete
@Field(name = "obsolete", index = Index.YES, analyze = Analyze.NO, store = Store.NO)
@Override
public boolean isObsolete() {
return obsolete;
}
示例14: getMolecularActionId
/**
* Returns the molecular action id. For Lucene and JAXB.
*
* @return the molecular action id
*/
@FieldBridge(impl = LongBridge.class)
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public Long getMolecularActionId() {
return molecularAction == null ? null : molecularAction.getId();
}
示例15: getId
@Override
@FieldBridge(impl = LongBridge.class)
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public Long getId() {
return this.id;
}