global
Class SortKey

java.lang.Object
  extended by global.SortKey

public class SortKey
extends java.lang.Object

One term in an ORDER BY clause; i.e. relations can be sorted on multiple (distinct) attributes, as well as in ascending or descending order.


Field Summary
 java.lang.Object field
          Column name or field number.
 boolean isDesc
          True if descending order, false if ascending order.
 
Constructor Summary
SortKey(java.lang.Object field, boolean isDesc)
          Constructs a SortKey from the given values.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

field

public java.lang.Object field
Column name or field number.


isDesc

public boolean isDesc
True if descending order, false if ascending order.

Constructor Detail

SortKey

public SortKey(java.lang.Object field,
               boolean isDesc)
Constructs a SortKey from the given values.