Package adams.flow.transformer
Enum HeatmapInfo.InfoType
- java.lang.Object
-
- java.lang.Enum<HeatmapInfo.InfoType>
-
- adams.flow.transformer.HeatmapInfo.InfoType
-
- All Implemented Interfaces:
Serializable
,Comparable<HeatmapInfo.InfoType>
- Enclosing class:
- HeatmapInfo
public static enum HeatmapInfo.InfoType extends Enum<HeatmapInfo.InfoType>
The type of information to generate.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HeatmapInfo.InfoType
valueOf(String name)
Returns the enum constant of this type with the specified name.static HeatmapInfo.InfoType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WIDTH
public static final HeatmapInfo.InfoType WIDTH
the width.
-
HEIGHT
public static final HeatmapInfo.InfoType HEIGHT
the height.
-
MIN
public static final HeatmapInfo.InfoType MIN
the minimum value.
-
MAX
public static final HeatmapInfo.InfoType MAX
the maximum value.
-
ZEROES
public static final HeatmapInfo.InfoType ZEROES
the number of zero values.
-
NON_ZEROES
public static final HeatmapInfo.InfoType NON_ZEROES
the number of non-zero values.
-
MISSING
public static final HeatmapInfo.InfoType MISSING
the number of missing values.
-
VALUES
public static final HeatmapInfo.InfoType VALUES
all (unique) values.
-
-
Method Detail
-
values
public static HeatmapInfo.InfoType[] 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 (HeatmapInfo.InfoType c : HeatmapInfo.InfoType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HeatmapInfo.InfoType 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
-
-