Package net.haesleinhuepf.clij2.plugins
Enum StatisticsOfLabelledPixels.STATISTICS_ENTRY
- java.lang.Object
-
- java.lang.Enum<StatisticsOfLabelledPixels.STATISTICS_ENTRY>
-
- net.haesleinhuepf.clij2.plugins.StatisticsOfLabelledPixels.STATISTICS_ENTRY
-
- All Implemented Interfaces:
Serializable,Comparable<StatisticsOfLabelledPixels.STATISTICS_ENTRY>
- Enclosing class:
- StatisticsOfLabelledPixels
public static enum StatisticsOfLabelledPixels.STATISTICS_ENTRY extends Enum<StatisticsOfLabelledPixels.STATISTICS_ENTRY>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description intvalue
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StatisticsOfLabelledPixels.STATISTICS_ENTRYvalueOf(String name)Returns the enum constant of this type with the specified name.static StatisticsOfLabelledPixels.STATISTICS_ENTRY[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDENTIFIER
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY IDENTIFIER
-
BOUNDING_BOX_X
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY BOUNDING_BOX_X
-
BOUNDING_BOX_Y
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY BOUNDING_BOX_Y
-
BOUNDING_BOX_Z
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY BOUNDING_BOX_Z
-
BOUNDING_BOX_END_X
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY BOUNDING_BOX_END_X
-
BOUNDING_BOX_END_Y
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY BOUNDING_BOX_END_Y
-
BOUNDING_BOX_END_Z
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY BOUNDING_BOX_END_Z
-
BOUNDING_BOX_WIDTH
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY BOUNDING_BOX_WIDTH
-
BOUNDING_BOX_HEIGHT
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY BOUNDING_BOX_HEIGHT
-
BOUNDING_BOX_DEPTH
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY BOUNDING_BOX_DEPTH
-
MINIMUM_INTENSITY
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MINIMUM_INTENSITY
-
MAXIMUM_INTENSITY
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MAXIMUM_INTENSITY
-
MEAN_INTENSITY
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MEAN_INTENSITY
-
SUM_INTENSITY
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY SUM_INTENSITY
-
STANDARD_DEVIATION_INTENSITY
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY STANDARD_DEVIATION_INTENSITY
-
PIXEL_COUNT
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY PIXEL_COUNT
-
SUM_INTENSITY_TIMES_X
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY SUM_INTENSITY_TIMES_X
-
SUM_INTENSITY_TIMES_Y
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY SUM_INTENSITY_TIMES_Y
-
SUM_INTENSITY_TIMES_Z
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY SUM_INTENSITY_TIMES_Z
-
MASS_CENTER_X
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MASS_CENTER_X
-
MASS_CENTER_Y
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MASS_CENTER_Y
-
MASS_CENTER_Z
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MASS_CENTER_Z
-
SUM_X
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY SUM_X
-
SUM_Y
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY SUM_Y
-
SUM_Z
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY SUM_Z
-
CENTROID_X
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY CENTROID_X
-
CENTROID_Y
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY CENTROID_Y
-
CENTROID_Z
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY CENTROID_Z
-
SUM_DISTANCE_TO_MASS_CENTER
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY SUM_DISTANCE_TO_MASS_CENTER
-
MEAN_DISTANCE_TO_MASS_CENTER
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MEAN_DISTANCE_TO_MASS_CENTER
-
MAX_DISTANCE_TO_MASS_CENTER
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MAX_DISTANCE_TO_MASS_CENTER
-
MAX_MEAN_DISTANCE_TO_MASS_CENTER_RATIO
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MAX_MEAN_DISTANCE_TO_MASS_CENTER_RATIO
-
SUM_DISTANCE_TO_CENTROID
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY SUM_DISTANCE_TO_CENTROID
-
MEAN_DISTANCE_TO_CENTROID
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MEAN_DISTANCE_TO_CENTROID
-
MAX_DISTANCE_TO_CENTROID
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MAX_DISTANCE_TO_CENTROID
-
MAX_MEAN_DISTANCE_TO_CENTROID_RATIO
public static final StatisticsOfLabelledPixels.STATISTICS_ENTRY MAX_MEAN_DISTANCE_TO_CENTROID_RATIO
-
-
Method Detail
-
values
public static StatisticsOfLabelledPixels.STATISTICS_ENTRY[] 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 (StatisticsOfLabelledPixels.STATISTICS_ENTRY c : StatisticsOfLabelledPixels.STATISTICS_ENTRY.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatisticsOfLabelledPixels.STATISTICS_ENTRY 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
-
-