12 lines
128 B
Java
12 lines
128 B
Java
package de.geofroggerfx.service;
|
|
|
|
/**
|
|
* direction of sorting
|
|
*
|
|
* @author abi
|
|
*/
|
|
public enum SortDirection {
|
|
ASC,
|
|
DESC
|
|
}
|