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

org.chronos.chronodb.api.Order Maven / Gradle / Ivy

The newest version!
package org.chronos.chronodb.api;

/**
 * A general multi-purpose enumeration for any kind of ordering.
 *
 * @author [email protected] -- Initial Contribution and API
 */
public enum Order {

	/** Represents ascending order, i.e. when iterating, every entry will be larger than the previous one. */
	ASCENDING,

	/** Represents descending order, i.e. when iterating, every entry will be smaller than the previous one. */
	DESCENDING

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy