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

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

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

Type of features to characterize local structure.


Enum Constant Summary
EIGEN_STRUCTURES
          Use Eigen structures as structure measures.
HARALICK_MEASURES
          Use Haralick features as structure measures.
 
Method Summary
static ActinAnalyzer2D.FeatureType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ActinAnalyzer2D.FeatureType[] 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

HARALICK_MEASURES

public static final ActinAnalyzer2D.FeatureType HARALICK_MEASURES
Use Haralick features as structure measures.


EIGEN_STRUCTURES

public static final ActinAnalyzer2D.FeatureType EIGEN_STRUCTURES
Use Eigen structures as structure measures.

Method Detail

values

public static ActinAnalyzer2D.FeatureType[] 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.FeatureType c : ActinAnalyzer2D.FeatureType.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.FeatureType 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.