com.crystaldecisions.sdk.occa.report.data
Class ParameterSortOrder

java.lang.Object
  extended bycom.crystaldecisions.sdk.occa.report.data.ParameterSortOrder

public final class ParameterSortOrder
extends java.lang.Object

This class contains constants that indicate how a parameter list is sorted.


Field Summary
static int _alphabeticalAscending
           The list is sorted in ascending alphabetical order.
static int _alphabeticalDescending
           The list is sorted in descending alphabetical order.
static int _noSort
           The list is not sorted.
static int _numericalAscending
           The list is sorted in ascending numerical order.
static int _numericalDescending
           The list is sorted in descending numerical order.
static ParameterSortOrder alphabeticalAscending
           A ParameterSortOrder object that specifies that the list is sorted in ascending alphabetical order.
static ParameterSortOrder alphabeticalDescending
           A ParameterSortOrder object that specifies that the list is sorted in descending alphabetical order.
static ParameterSortOrder noSort
           A ParameterSortOrder object that specifies that the list is not sorted.
static ParameterSortOrder numericalAscending
           A ParameterSortOrder object that specifies that the list is sorted in ascending numerical order.
static ParameterSortOrder numericalDescending
           A ParameterSortOrder object that specifies that the list is sorted in descending numerical order.
 
Method Summary
static ParameterSortOrder from_int(int i)
           Returns the ParameterSortOrder corresponding to the specified value.
static ParameterSortOrder from_string(java.lang.String sVal)
           Returns the ParameterSortOrder corresponding to the specified type.
 java.lang.String toString()
           Returns the String value of this ParameterSortOrder object.
 int value()
           Returns the int value of this ParameterSortOrder object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_noSort

public static final int _noSort

The list is not sorted.

See Also:
Constant Field Values

_alphabeticalAscending

public static final int _alphabeticalAscending

The list is sorted in ascending alphabetical order.

See Also:
Constant Field Values

_alphabeticalDescending

public static final int _alphabeticalDescending

The list is sorted in descending alphabetical order.

See Also:
Constant Field Values

_numericalAscending

public static final int _numericalAscending

The list is sorted in ascending numerical order.

See Also:
Constant Field Values

_numericalDescending

public static final int _numericalDescending

The list is sorted in descending numerical order.

See Also:
Constant Field Values

noSort

public static final ParameterSortOrder noSort

A ParameterSortOrder object that specifies that the list is not sorted.


alphabeticalAscending

public static final ParameterSortOrder alphabeticalAscending

A ParameterSortOrder object that specifies that the list is sorted in ascending alphabetical order.


alphabeticalDescending

public static final ParameterSortOrder alphabeticalDescending

A ParameterSortOrder object that specifies that the list is sorted in descending alphabetical order.


numericalAscending

public static final ParameterSortOrder numericalAscending

A ParameterSortOrder object that specifies that the list is sorted in ascending numerical order.


numericalDescending

public static final ParameterSortOrder numericalDescending

A ParameterSortOrder object that specifies that the list is sorted in descending numerical order.

Method Detail

from_int

public static final ParameterSortOrder from_int(int i)

Returns the ParameterSortOrder corresponding to the specified value.

Parameters:
i - The int value of the desired ParameterSortOrder object.
Returns:
The ParameterSortOrder corresponding to the specified value.

from_string

public static final ParameterSortOrder from_string(java.lang.String sVal)

Returns the ParameterSortOrder corresponding to the specified type.

Parameters:
sVal - The String value of the desired ParameterSortOrder object.
Returns:
The ParameterSortOrder corresponding to the specified type.

toString

public java.lang.String toString()

Returns the String value of this ParameterSortOrder object.

Returns:
The String value of this ParameterSortOrder object.

value

public int value()

Returns the int value of this ParameterSortOrder object.

Returns:
The int value of this ParameterSortOrder object.