|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RecordSummaryFunctionType>
com.smartgwt.client.types.RecordSummaryFunctionType
public enum RecordSummaryFunctionType
Function to produce a summary value based on field values within a record. Example usage is record-level summaries in "summary" type ListGrid fields.
SummaryFunctions may be specified in one of 2 ways:
record
the record for which the value is being calculatedfields
Array of listGridFields from which summaries should be calculatedsummaryField
pointer to the summary type field on which the summary function is being run.
RecordSummaryFunctionType
type.
Enum Constant Summary | |
---|---|
AVG
Iterates through each field, picking up the numeric field values from the record and calculating the mean value |
|
MAX
Iterates through each field, picking up the numeric field values from the record and calculating the maximum value |
|
MIN
Iterates through each field, picking up the numeric field values from the record and calculating the minimum value |
|
MULTIPLIER
Iterates through each field, picking up the numeric field values from the record and multiplying them together |
|
SUM
Iterates through each field, picking up the numeric field values from the record and summing them. |
Method Summary | |
---|---|
String |
getValue()
|
static RecordSummaryFunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RecordSummaryFunctionType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RecordSummaryFunctionType SUM
public static final RecordSummaryFunctionType AVG
public static final RecordSummaryFunctionType MAX
public static final RecordSummaryFunctionType MIN
public static final RecordSummaryFunctionType MULTIPLIER
Method Detail |
---|
public static RecordSummaryFunctionType[] values()
for (RecordSummaryFunctionType c : RecordSummaryFunctionType.values()) System.out.println(c);
public static RecordSummaryFunctionType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getValue()
getValue
in interface ValueEnum
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |