
org.hibernate.search.annotations.Norms Maven / Gradle / Ivy
/*
* Hibernate Search, full-text search for your domain model
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.search.annotations;
/**
* Defines whether the norms should be stored in the index
*
* @author Hardy Ferentschik
*/
public enum Norms {
/**
* Store norms
*/
YES,
/**
* Do not store norms
*/
NO
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy