All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.annotations.SortType Maven / Gradle / Ivy

/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * 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.annotations;

/**
 * Possible collection sorting strategies.
 *
 * @author Emmanuel Bernard
 *
 * @deprecated Since {@link Sort} is deprecated.
 */
@Deprecated
public enum SortType {
	/**
	 * The collection is unsorted.
	 */
	UNSORTED,
	/**
	 * The collection is sorted using its natural sorting.
	 */
	NATURAL,
	/**
	 * The collection is sorted using a supplied comparator.
	 */
	COMPARATOR
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy