Enum CombinedDispersionDataImpl.KeyPrefix
- java.lang.Object
-
- java.lang.Enum<CombinedDispersionDataImpl.KeyPrefix>
-
- cern.accsoft.steering.aloha.plugin.disp.meas.data.CombinedDispersionDataImpl.KeyPrefix
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CombinedDispersionDataImpl.KeyPrefix>
- Enclosing class:
- CombinedDispersionDataImpl
public static enum CombinedDispersionDataImpl.KeyPrefix extends java.lang.Enum<CombinedDispersionDataImpl.KeyPrefix>
this enum just defines prefixes for the hashmap-keys
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NOISY_DIFFERENCENORMALIZED_DIFFERENCENORMALIZED_RMS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CombinedDispersionDataImpl.KeyPrefixvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CombinedDispersionDataImpl.KeyPrefix[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOISY_DIFFERENCE
public static final CombinedDispersionDataImpl.KeyPrefix NOISY_DIFFERENCE
-
NORMALIZED_DIFFERENCE
public static final CombinedDispersionDataImpl.KeyPrefix NORMALIZED_DIFFERENCE
-
NORMALIZED_RMS
public static final CombinedDispersionDataImpl.KeyPrefix NORMALIZED_RMS
-
-
Method Detail
-
values
public static CombinedDispersionDataImpl.KeyPrefix[] 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 (CombinedDispersionDataImpl.KeyPrefix c : CombinedDispersionDataImpl.KeyPrefix.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CombinedDispersionDataImpl.KeyPrefix 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
-
-