de.unihalle.informatik.MiToBo.apps.xylem
Enum XylemGrower.GrowingMode

java.lang.Object
  extended by java.lang.Enum<XylemGrower.GrowingMode>
      extended by de.unihalle.informatik.MiToBo.apps.xylem.XylemGrower.GrowingMode
All Implemented Interfaces:
Serializable, Comparable<XylemGrower.GrowingMode>
Enclosing class:
XylemGrower

public static enum XylemGrower.GrowingMode
extends Enum<XylemGrower.GrowingMode>

The region growing modus. The suffix STATIC means, that the threshold for this channel is not updated after adding new pixels to the region. X is an acronym for {Intensity|Brightness|Value}.


Enum Constant Summary
HUE_ONLY
          Hue only.
HUE_SAT_X
          Hue, Saturation and X.
HUE_SAT_X_STATIC
          Hue and Saturation, with static X.
HUE_X_STATIC
          Hue, with static X.
SAT_X_STATIC
          Saturation, with static X.
 
Method Summary
static XylemGrower.GrowingMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static XylemGrower.GrowingMode[] 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

HUE_ONLY

public static final XylemGrower.GrowingMode HUE_ONLY
Hue only.


HUE_X_STATIC

public static final XylemGrower.GrowingMode HUE_X_STATIC
Hue, with static X.


SAT_X_STATIC

public static final XylemGrower.GrowingMode SAT_X_STATIC
Saturation, with static X.


HUE_SAT_X_STATIC

public static final XylemGrower.GrowingMode HUE_SAT_X_STATIC
Hue and Saturation, with static X.


HUE_SAT_X

public static final XylemGrower.GrowingMode HUE_SAT_X
Hue, Saturation and X.

Method Detail

values

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

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

valueOf

public static XylemGrower.GrowingMode 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.