org.jminor.framework.client.model
Enum PropertySummaryModel.SummaryType
java.lang.Object
java.lang.Enum<PropertySummaryModel.SummaryType>
org.jminor.framework.client.model.PropertySummaryModel.SummaryType
- All Implemented Interfaces:
- Serializable, Comparable<PropertySummaryModel.SummaryType>
- Enclosing interface:
- PropertySummaryModel
public static enum PropertySummaryModel.SummaryType
- extends Enum<PropertySummaryModel.SummaryType>
NONE
public static final PropertySummaryModel.SummaryType NONE
SUM
public static final PropertySummaryModel.SummaryType SUM
AVERAGE
public static final PropertySummaryModel.SummaryType AVERAGE
MINIMUM
public static final PropertySummaryModel.SummaryType MINIMUM
MAXIMUM
public static final PropertySummaryModel.SummaryType MAXIMUM
MINIMUM_MAXIMUM
public static final PropertySummaryModel.SummaryType MINIMUM_MAXIMUM
values
public static PropertySummaryModel.SummaryType[] 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 (PropertySummaryModel.SummaryType c : PropertySummaryModel.SummaryType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PropertySummaryModel.SummaryType 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 name
NullPointerException
- if the argument is null