本文整理汇总了Java中org.hibernate.search.annotations.Store.NO属性的典型用法代码示例。如果您正苦于以下问题:Java Store.NO属性的具体用法?Java Store.NO怎么用?Java Store.NO使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.hibernate.search.annotations.Store
的用法示例。
在下文中一共展示了Store.NO属性的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getUsername
/**
* Gets username.
*
* @return the username
*/
@Field(index = org.hibernate.search.annotations.Index.YES, analyze = Analyze.YES, store = Store.NO)
@Analyzer(impl = KeywordAnalyzer.class)
public String getUsername()
{
return username;
}
示例2: getName
/**
* Gets the name.
*
* @return the name
*/
@Fields({
@Field(name = "name", index = Index.YES, store = Store.NO, analyze = Analyze.YES, analyzer = @Analyzer(definition = "noStopWord")),
@Field(name = "nameSort", index = Index.YES, analyze = Analyze.NO, store = Store.NO),
})
@Override
public String getName() {
return name;
}
示例3: getConceptTerminologyIds
@Override
@FieldBridge(impl = MapKeyValueToCsvBridge.class)
@Field(name = "conceptTerminologyIds", index = Index.YES, analyze = Analyze.YES, store = Store.NO)
public Map<String, String> getConceptTerminologyIds() {
if (conceptTerminologyIds == null) {
conceptTerminologyIds = new HashMap<>(2);
}
return conceptTerminologyIds;
}
示例4: getProjectRoleMap
@XmlJavaTypeAdapter(ProjectRoleMapAdapter.class)
@Fields({
@Field(bridge = @FieldBridge(impl = ProjectRoleBridge.class), index = Index.YES, analyze = Analyze.YES, store = Store.NO),
@Field(name = "projectAnyRole", bridge = @FieldBridge(impl = MapIdBridge.class), index = Index.YES, analyze = Analyze.YES, store = Store.NO)
})
@Override
public Map<Project, UserRole> getProjectRoleMap() {
if (projectRoleMap == null) {
projectRoleMap = new HashMap<>();
}
return projectRoleMap;
}
示例5: getClusterId
@Override
@Fields({
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO, bridge = @FieldBridge(impl = LongBridge.class)),
@Field(name = "clusterIdSort", index = Index.YES, analyze = Analyze.NO, store = Store.NO)
})
public Long getClusterId() {
return clusterId;
}
示例6: getField
@Override
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public String getField() {
return field;
}
示例7: getEmailEncoded
/**
* @return user's email
*/
@Column(name = "email", nullable = false, length = 100, insertable=true, updatable=false)
@Field(index=org.hibernate.search.annotations.Index.TOKENIZED, store=Store.NO)
protected String getEmailEncoded() {
return this.email;
}
示例8: getAdditionalRelationshipType
@Override
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public String getAdditionalRelationshipType() {
return additionalRelationshipType;
}
示例9: isFullyDefined
/**
* Indicates whether or not fully defined is the case.
*
* @return <code>true</code> if so, <code>false</code> otherwise
*/
@Override
@Field(name = "fullyDefined", index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public boolean isFullyDefined() {
return fullyDefined;
}
示例10: 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);
}
示例11: getMessage
@Override
@Field(index = Index.YES, analyze = Analyze.YES, store = Store.NO)
public String getMessage() {
return message;
}
示例12: getName
@Override
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public String getName() {
return name;
}
示例13: getAtomName
/**
* Returns the atom name.
*
* @return the atom name
*/
@XmlElement
@Field(index = Index.YES, analyze = Analyze.YES, store = Store.NO)
public String getAtomName() {
return (atom != null) ? atom.getName() : "";
}
示例14: getComponentId
@Override
@FieldBridge(impl = LongBridge.class)
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public Long getComponentId() {
return componentId;
}
示例15: getTerminology
@Override
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.NO)
public String getTerminology() {
return terminology;
}