com.sybase.persistence
Class SortOrderList

java.lang.Object
  extended by com.sybase.persistence.SortOrderList

public class SortOrderList
extends java.lang.Object


Constructor Summary
SortOrderList()
           
SortOrderList(int capacity)
          Sybase internal use only.
 
Method Summary
 SortOrderList _add(SortOrder item)
          Sybase internal use only.
 boolean contains(SortOrder x)
          Checks if this list contains the given SortOrder.
 SortOrder get(int index)
          Sybase internal use only.
 SortOrder getByIndex(int index)
          Gets a SortOrder by index.
 int indexOf(SortOrder x)
          Determines the index of the specified SortOrder.
 boolean isEmpty()
          Sybase internal use only.
 SortOrder item(int index)
          Sybase internal use only.
 SortOrderList items(int skip, int take)
          Sybase internal use only.
 int size()
          Gets the number of SortOrder objects in this list.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SortOrderList

public SortOrderList()

SortOrderList

public SortOrderList(int capacity)
Sybase internal use only.

Method Detail

isEmpty

public boolean isEmpty()
Sybase internal use only.


get

public SortOrder get(int index)
Sybase internal use only.


getByIndex

public SortOrder getByIndex(int index)
Gets a SortOrder by index.

Parameters:
index - The zero-based index of the SortOrder to find.
Returns:
Returns SortOrder.

contains

public boolean contains(SortOrder x)
Checks if this list contains the given SortOrder.

Parameters:
x - The SortOrder to check.
Returns:
Returns true if x is found; otherwise, false.

indexOf

public int indexOf(SortOrder x)
Determines the index of the specified SortOrder.

Parameters:
x - The SortOrder to find.
Returns:
Returns the index of x if found; otherwise, -1.

size

public int size()
Gets the number of SortOrder objects in this list.

Returns:

_add

public SortOrderList _add(SortOrder item)
Sybase internal use only.


item

public SortOrder item(int index)
Sybase internal use only.


items

public SortOrderList items(int skip,
                           int take)
Sybase internal use only.