
org.chronos.chronodb.api.Order Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.chronos.chronodb.api Show documentation
Show all versions of org.chronos.chronodb.api Show documentation
Versioned data storage, embeddable and easy to use.
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