/** * Copyright (C) Intersect 2012. * * This module contains Proprietary Information of Intersect, * and should be treated as Confidential. */ package au.org.intersect.exsite9.domain; /** * The direction to sort the a field with. */ public enum SortFieldDirection { /** * Ascending sort direction. */ ASC, /** * Descending sort direction. */ DESC; }