Enum ReductionType
- java.lang.Object
-
- java.lang.Enum<ReductionType>
-
- de.gsi.chart.renderer.datareduction.ReductionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ReductionType>
public enum ReductionType extends java.lang.Enum<ReductionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVERAGEDOWN_SAMPLEMAXMIN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReductionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ReductionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MIN
public static final ReductionType MIN
-
MAX
public static final ReductionType MAX
-
AVERAGE
public static final ReductionType AVERAGE
-
DOWN_SAMPLE
public static final ReductionType DOWN_SAMPLE
-
-
Method Detail
-
values
public static ReductionType[] 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 (ReductionType c : ReductionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReductionType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-