|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.crystaldecisions.sdk.occa.report.data.SummaryOperation
public final class SummaryOperation
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 |
---|
public static final int _sum
Sum of the values.
public static final int _average
Average of the values.
public static final int _variance
Variance of the values.
public static final int _standardDeviation
Standard deviation.
public static final int _maximum
Maximum value of all the values.
public static final int _minimum
Minimum value of all the values.
public static final int _count
The number of occurrences.
public static final int _popVariance
The population variance.
public static final int _popStandardDeviation
The standard population deviation.
public static final int _distinctCount
The number of distinct occurrences of the value.
public static final int _correlation
Reserved for future use.
public static final int _covariance
Reserved for future use.
public static final int _weightedAvg
Reserved for future use.
public static final int _median
Reserved for future use.
public static final int _percentile
Reserved for future use.
public static final int _nthLargest
Reserved for future use.
public static final int _nthSmallest
Reserved for future use.
public static final int _mode
Reserved for future use.
public static final int _nthMostFrequent
Reserved for future use.
public static final int _noOperation
Summary operation introduced for Crosstab embedded summaries
public static final SummaryOperation sum
A SummaryOperation
object that specifies the sum of the values.
public static final SummaryOperation average
A SummaryOperation
object that specifies an average of the values.
public static final SummaryOperation variance
A SummaryOperation
object that specifies the variance of the values.
public static final SummaryOperation standardDeviation
A SummaryOperation
object that specifies the standard deviation.
public static final SummaryOperation maximum
A SummaryOperation
object that specifies the maximum value of all the values.
public static final SummaryOperation minimum
A SummaryOperation
object that specifies the minimum value of all the values.
public static final SummaryOperation count
A SummaryOperation
object that specifies the number of occurrences.
public static final SummaryOperation popVariance
A SummaryOperation
object that specifies the population variance.
public static final SummaryOperation popStandardDeviation
A SummaryOperation
object that specifies the standard population deviation.
public static final SummaryOperation distinctCount
A SummaryOperation
object that specifies the number of distinct occurrences of the
value.
public static final SummaryOperation correlation
Reserved for future use.
public static final SummaryOperation covariance
Reserved for future use.
public static final SummaryOperation weightedAvg
Reserved for future use.
public static final SummaryOperation median
Reserved for future use.
public static final SummaryOperation percentile
Reserved for future use.
public static final SummaryOperation nthLargest
Reserved for future use.
public static final SummaryOperation nthSmallest
Reserved for future use.
public static final SummaryOperation mode
Reserved for future use.
public static final SummaryOperation nthMostFrequent
Reserved for future use.
public static final SummaryOperation noOperation
Reserved for future use.
Method Detail |
---|
public static final SummaryOperation from_int(int i)
Returns the SummaryOperation
corresponding to the specified value.
i
- The int
value of the desired SummaryOperation
object.
SummaryOperation
corresponding to the specified value.public static final SummaryOperation from_string(java.lang.String sVal)
Returns the SummaryOperation
corresponding to the specified type.
sVal
- The String
value of the desired SummaryOperation
object.
SummaryOperation
corresponding to the specified type.public java.lang.String toString()
Returns the String
value of this SummaryOperation
object.
toString
in class java.lang.Object
String
containing the value of this SummaryOperation
object.public int value()
Returns the int
value of this SummaryOperation
object.
int
that specifies the value of this SummaryOperation
object.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |