Package de.gsi.dataset.spi
Enum DimReductionDataSet.Option
- java.lang.Object
-
- java.lang.Enum<DimReductionDataSet.Option>
-
- de.gsi.dataset.spi.DimReductionDataSet.Option
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DimReductionDataSet.Option>
- Enclosing class:
- DimReductionDataSet
public static enum DimReductionDataSet.Option extends java.lang.Enum<DimReductionDataSet.Option>
The possible reduction options if integrated over a value range- Author:
- rstein
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DimReductionDataSet.OptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DimReductionDataSet.Option[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MIN
public static final DimReductionDataSet.Option MIN
-
MEAN
public static final DimReductionDataSet.Option MEAN
-
MAX
public static final DimReductionDataSet.Option MAX
-
INTEGRAL
public static final DimReductionDataSet.Option INTEGRAL
-
SLICE
public static final DimReductionDataSet.Option SLICE
-
-
Method Detail
-
values
public static DimReductionDataSet.Option[] 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 (DimReductionDataSet.Option c : DimReductionDataSet.Option.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DimReductionDataSet.Option 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
-
-