
com.databasesandlife.util.OrderByDirection Maven / Gradle / Ivy
package com.databasesandlife.util;
/**
* @author This source is copyright Adrian Smith and licensed under the LGPL 3.
* @see Project on GitHub
*/
public enum OrderByDirection {
asc { public OrderByDirection getReverseDirection() { return desc; } },
desc { public OrderByDirection getReverseDirection() { return asc; } };
public abstract OrderByDirection getReverseDirection();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy