Package io.keikai.model
Enum STableColumn.STotalsRowFunction
- java.lang.Object
-
- java.lang.Enum<STableColumn.STotalsRowFunction>
-
- io.keikai.model.STableColumn.STotalsRowFunction
-
- All Implemented Interfaces:
Serializable
,Comparable<STableColumn.STotalsRowFunction>
- Enclosing interface:
- STableColumn
public static enum STableColumn.STotalsRowFunction extends Enum<STableColumn.STotalsRowFunction>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCode()
static STableColumn.STotalsRowFunction
valueOf(String name)
Returns the enum constant of this type with the specified name.static STableColumn.STotalsRowFunction
valueOfCode(String code)
static STableColumn.STotalsRowFunction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
none
public static final STableColumn.STotalsRowFunction none
-
sum
public static final STableColumn.STotalsRowFunction sum
-
min
public static final STableColumn.STotalsRowFunction min
-
max
public static final STableColumn.STotalsRowFunction max
-
average
public static final STableColumn.STotalsRowFunction average
-
count
public static final STableColumn.STotalsRowFunction count
-
countNums
public static final STableColumn.STotalsRowFunction countNums
-
stdDev
public static final STableColumn.STotalsRowFunction stdDev
-
var
public static final STableColumn.STotalsRowFunction var
-
custom
public static final STableColumn.STotalsRowFunction custom
-
-
Method Detail
-
values
public static STableColumn.STotalsRowFunction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (STableColumn.STotalsRowFunction c : STableColumn.STotalsRowFunction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static STableColumn.STotalsRowFunction valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getCode
public String getCode()
-
valueOfCode
public static STableColumn.STotalsRowFunction valueOfCode(String code)
-
-