Package jisa.enums
Enum AMode
- java.lang.Object
-
- java.lang.Enum<AMode>
-
- jisa.enums.AMode
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MEAN_MOVING
Mean average, only taking one new data point each time and using the previous n-1 points.MEAN_REPEAT
Mean average, taking n data points each time.MEDIAN_MOVING
Median average, only taking one new data point each time and using the previous n-1 points.MEDIAN_REPEAT
Median average, taking n data points each time.NONE
No Averaging.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final AMode NONE
No Averaging.
-
MEAN_REPEAT
public static final AMode MEAN_REPEAT
Mean average, taking n data points each time.
-
MEAN_MOVING
public static final AMode MEAN_MOVING
Mean average, only taking one new data point each time and using the previous n-1 points.
-
MEDIAN_REPEAT
public static final AMode MEDIAN_REPEAT
Median average, taking n data points each time.
-
MEDIAN_MOVING
public static final AMode MEDIAN_MOVING
Median average, only taking one new data point each time and using the previous n-1 points.
-
-
Method Detail
-
values
public static AMode[] 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 (AMode c : AMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AMode 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
-
-