Package de.gsi.math
Enum ArrayMath.FilterType
- java.lang.Object
-
- java.lang.Enum<ArrayMath.FilterType>
-
- de.gsi.math.ArrayMath.FilterType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ArrayMath.FilterType>
- Enclosing class:
- ArrayMath
public static enum ArrayMath.FilterType extends java.lang.Enum<ArrayMath.FilterType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArrayMath.FilterTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ArrayMath.FilterType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOW_PASS
public static final ArrayMath.FilterType LOW_PASS
-
HIGH_PASS
public static final ArrayMath.FilterType HIGH_PASS
-
-
Method Detail
-
values
public static ArrayMath.FilterType[] 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 (ArrayMath.FilterType c : ArrayMath.FilterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArrayMath.FilterType 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
-
-