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

java.lang.Object
  extended by com.crystaldecisions.sdk.occa.report.data.SummaryOperation

public final class SummaryOperation
extends java.lang.Object

This class contains constants that define how a summary is performed.


Field Summary
static int _average
           Average of the values.
static int _correlation
           Reserved for future use.
static int _count
           The number of occurrences.
static int _covariance
           Reserved for future use.
static int _distinctCount
           The number of distinct occurrences of the value.
static int _maximum
           Maximum value of all the values.
static int _median
           Reserved for future use.
static int _minimum
           Minimum value of all the values.
static int _mode
           Reserved for future use.
static int _noOperation
           Summary operation introduced for Crosstab embedded summaries
static int _nthLargest
           Reserved for future use.
static int _nthMostFrequent
           Reserved for future use.
static int _nthSmallest
           Reserved for future use.
static int _percentile
           Reserved for future use.
static int _popStandardDeviation
           The standard population deviation.
static int _popVariance
           The population variance.
static int _standardDeviation
           Standard deviation.
static int _sum
           Sum of the values.
static int _variance
           Variance of the values.
static int _weightedAvg
           Reserved for future use.
static SummaryOperation average
           A SummaryOperation object that specifies an average of the values.
static SummaryOperation correlation
           Reserved for future use.
static SummaryOperation count
           A SummaryOperation object that specifies the number of occurrences.
static SummaryOperation covariance
           Reserved for future use.
static SummaryOperation distinctCount
           A SummaryOperation object that specifies the number of distinct occurrences of the value.
static SummaryOperation maximum
           A SummaryOperation object that specifies the maximum value of all the values.
static SummaryOperation median
           Reserved for future use.
static SummaryOperation minimum
           A SummaryOperation object that specifies the minimum value of all the values.
static SummaryOperation mode
           Reserved for future use.
static SummaryOperation noOperation
           Reserved for future use.
static SummaryOperation nthLargest
           Reserved for future use.
static SummaryOperation nthMostFrequent
           Reserved for future use.
static SummaryOperation nthSmallest
           Reserved for future use.
static SummaryOperation percentile
           Reserved for future use.
static SummaryOperation popStandardDeviation
           A SummaryOperation object that specifies the standard population deviation.
static SummaryOperation popVariance
           A SummaryOperation object that specifies the population variance.
static SummaryOperation standardDeviation
           A SummaryOperation object that specifies the standard deviation.
static SummaryOperation sum
           A SummaryOperation object that specifies the sum of the values.
static SummaryOperation variance
           A SummaryOperation object that specifies the variance of the values.
static SummaryOperation weightedAvg
           Reserved for future use.
 
Method Summary
static SummaryOperation from_int(int i)
           Returns the SummaryOperation corresponding to the specified value.
static SummaryOperation from_string(java.lang.String sVal)
           Returns the SummaryOperation corresponding to the specified type.
 java.lang.String toString()
           Returns the String value of this SummaryOperation object.
 int value()
           Returns the int value of this SummaryOperation object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_sum

public static final int _sum

Sum of the values.

See Also:
Constant Field Values

_average

public static final int _average

Average of the values.

See Also:
Constant Field Values

_variance

public static final int _variance

Variance of the values.

See Also:
Constant Field Values

_standardDeviation

public static final int _standardDeviation

Standard deviation.

See Also:
Constant Field Values

_maximum

public static final int _maximum

Maximum value of all the values.

See Also:
Constant Field Values

_minimum

public static final int _minimum

Minimum value of all the values.

See Also:
Constant Field Values

_count

public static final int _count

The number of occurrences.

See Also:
Constant Field Values

_popVariance

public static final int _popVariance

The population variance.

See Also:
Constant Field Values

_popStandardDeviation

public static final int _popStandardDeviation

The standard population deviation.

See Also:
Constant Field Values

_distinctCount

public static final int _distinctCount

The number of distinct occurrences of the value.

See Also:
Constant Field Values

_correlation

public static final int _correlation

Reserved for future use.

See Also:
Constant Field Values

_covariance

public static final int _covariance

Reserved for future use.

See Also:
Constant Field Values

_weightedAvg

public static final int _weightedAvg

Reserved for future use.

See Also:
Constant Field Values

_median

public static final int _median

Reserved for future use.

See Also:
Constant Field Values

_percentile

public static final int _percentile

Reserved for future use.

See Also:
Constant Field Values

_nthLargest

public static final int _nthLargest

Reserved for future use.

See Also:
Constant Field Values

_nthSmallest

public static final int _nthSmallest

Reserved for future use.

See Also:
Constant Field Values

_mode

public static final int _mode

Reserved for future use.

See Also:
Constant Field Values

_nthMostFrequent

public static final int _nthMostFrequent

Reserved for future use.

See Also:
Constant Field Values

_noOperation

public static final int _noOperation

Summary operation introduced for Crosstab embedded summaries

See Also:
Constant Field Values

sum

public static final SummaryOperation sum

A SummaryOperation object that specifies the sum of the values.


average

public static final SummaryOperation average

A SummaryOperation object that specifies an average of the values.


variance

public static final SummaryOperation variance

A SummaryOperation object that specifies the variance of the values.


standardDeviation

public static final SummaryOperation standardDeviation

A SummaryOperation object that specifies the standard deviation.


maximum

public static final SummaryOperation maximum

A SummaryOperation object that specifies the maximum value of all the values.


minimum

public static final SummaryOperation minimum

A SummaryOperation object that specifies the minimum value of all the values.


count

public static final SummaryOperation count

A SummaryOperation object that specifies the number of occurrences.


popVariance

public static final SummaryOperation popVariance

A SummaryOperation object that specifies the population variance.


popStandardDeviation

public static final SummaryOperation popStandardDeviation

A SummaryOperation object that specifies the standard population deviation.


distinctCount

public static final SummaryOperation distinctCount

A SummaryOperation object that specifies the number of distinct occurrences of the value.


correlation

public static final SummaryOperation correlation

Reserved for future use.


covariance

public static final SummaryOperation covariance

Reserved for future use.


weightedAvg

public static final SummaryOperation weightedAvg

Reserved for future use.


median

public static final SummaryOperation median

Reserved for future use.


percentile

public static final SummaryOperation percentile

Reserved for future use.


nthLargest

public static final SummaryOperation nthLargest

Reserved for future use.


nthSmallest

public static final SummaryOperation nthSmallest

Reserved for future use.


mode

public static final SummaryOperation mode

Reserved for future use.


nthMostFrequent

public static final SummaryOperation nthMostFrequent

Reserved for future use.


noOperation

public static final SummaryOperation noOperation

Reserved for future use.

Method Detail

from_int

public static final SummaryOperation from_int(int i)

Returns the SummaryOperation corresponding to the specified value.

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

from_string

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

Returns the SummaryOperation corresponding to the specified type.

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

toString

public java.lang.String toString()

Returns the String value of this SummaryOperation object.

Overrides:
toString in class java.lang.Object
Returns:
A String containing the value of this SummaryOperation object.

value

public int value()

Returns the int value of this SummaryOperation object.

Returns:
An int that specifies the value of this SummaryOperation object.