de.unihalle.informatik.MiToBo.apps.actinAnalysis
Enum ActinAnalyzer2D.CellMaskFormat

java.lang.Object
  extended by java.lang.Enum<ActinAnalyzer2D.CellMaskFormat>
      extended by de.unihalle.informatik.MiToBo.apps.actinAnalysis.ActinAnalyzer2D.CellMaskFormat
All Implemented Interfaces:
Serializable, Comparable<ActinAnalyzer2D.CellMaskFormat>
Enclosing class:
ActinAnalyzer2D

public static enum ActinAnalyzer2D.CellMaskFormat
extends Enum<ActinAnalyzer2D.CellMaskFormat>

Format of cell segmentation data.


Enum Constant Summary
IJ_ROIS
          Set of ImageJ 1.x ROIs.
LABEL_IMAGE
          Label image, i.e., each cell has its own gray-scale label.
 
Method Summary
static ActinAnalyzer2D.CellMaskFormat valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ActinAnalyzer2D.CellMaskFormat[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LABEL_IMAGE

public static final ActinAnalyzer2D.CellMaskFormat LABEL_IMAGE
Label image, i.e., each cell has its own gray-scale label.


IJ_ROIS

public static final ActinAnalyzer2D.CellMaskFormat IJ_ROIS
Set of ImageJ 1.x ROIs.

Method Detail

values

public static ActinAnalyzer2D.CellMaskFormat[] 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 (ActinAnalyzer2D.CellMaskFormat c : ActinAnalyzer2D.CellMaskFormat.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ActinAnalyzer2D.CellMaskFormat 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 name
NullPointerException - if the argument is null


Copyright © 2010–2015 Martin Luther University Halle-Wittenberg. All rights reserved.