com.databasesandlife.util.gwtsafe.OrderByDirection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-common Show documentation
Show all versions of java-common Show documentation
Utility classes developed at Adrian Smith Software (A.S.S.)
The newest version!
package com.databasesandlife.util.gwtsafe;
/**
* @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();
}