atg.search.routing.command.search
Class BrowseRequest.SetSort

java.lang.Object
  extended by atg.core.util.Enum
      extended by atg.search.routing.command.search.BrowseRequest.SetSort
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable
Enclosing class:
BrowseRequest

public static class BrowseRequest.SetSort
extends Enum

The sort value deterimes the sort order of the descendent sets. A value of alpha means the sets are sorted by name. A value of size means the sets are sorted by largest to smallest size. The default value is none, which means no sorting is performed. See SearchPropertyEditors.

See Also:
Serialized Form

Nested Class Summary
static class BrowseRequest.SetSort.SetSortEditor
           
 
Nested classes/interfaces inherited from class atg.core.util.Enum
Enum.EnumEditor, Enum.LocaleEnumEditor
 
Field Summary
static BrowseRequest.SetSort ALPHA
          sets are sorted by name
static java.lang.String CLASS_VERSION
          Class version string
static BrowseRequest.SetSort NONE
          no sorting is performed
static BrowseRequest.SetSort SIZE
          sets are sorted by largest to smallest size
 
Method Summary
static java.util.Iterator getIterator()
           
static BrowseRequest.SetSort valueOf(java.lang.String pName)
          Method to get the enumerated value object for the given string.
 
Methods inherited from class atg.core.util.Enum
compareTo, getEnumClassInfo, getOrdinal, iterator, iterator, lookup, lookup, lookup, lookup, readResolve, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CLASS_VERSION

public static final java.lang.String CLASS_VERSION
Class version string

See Also:
Constant Field Values

NONE

public static final BrowseRequest.SetSort NONE
no sorting is performed


ALPHA

public static final BrowseRequest.SetSort ALPHA
sets are sorted by name


SIZE

public static final BrowseRequest.SetSort SIZE
sets are sorted by largest to smallest size

Method Detail

valueOf

public static BrowseRequest.SetSort valueOf(java.lang.String pName)
Method to get the enumerated value object for the given string.

Parameters:
pName - String name to lookup.
Returns:
SetSort for the given name.

getIterator

public static java.util.Iterator getIterator()