Package adams.data.cleaner.instance
Enum RemoveDuplicateSpectra.PostProcessing
- java.lang.Object
-
- java.lang.Enum<RemoveDuplicateSpectra.PostProcessing>
-
- adams.data.cleaner.instance.RemoveDuplicateSpectra.PostProcessing
-
- All Implemented Interfaces:
Serializable,Comparable<RemoveDuplicateSpectra.PostProcessing>
- Enclosing class:
- RemoveDuplicateSpectra
public static enum RemoveDuplicateSpectra.PostProcessing extends Enum<RemoveDuplicateSpectra.PostProcessing>
Post-removal operation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NOTHINGRANDOMIZESORTSORT_AND_RANDOMIZE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RemoveDuplicateSpectra.PostProcessingvalueOf(String name)Returns the enum constant of this type with the specified name.static RemoveDuplicateSpectra.PostProcessing[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOTHING
public static final RemoveDuplicateSpectra.PostProcessing NOTHING
-
RANDOMIZE
public static final RemoveDuplicateSpectra.PostProcessing RANDOMIZE
-
SORT
public static final RemoveDuplicateSpectra.PostProcessing SORT
-
SORT_AND_RANDOMIZE
public static final RemoveDuplicateSpectra.PostProcessing SORT_AND_RANDOMIZE
-
-
Method Detail
-
values
public static RemoveDuplicateSpectra.PostProcessing[] 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 (RemoveDuplicateSpectra.PostProcessing c : RemoveDuplicateSpectra.PostProcessing.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RemoveDuplicateSpectra.PostProcessing 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
-
-