zisko.multicastor.program.view
Enum MiscBorder.BorderType

java.lang.Object
  extended by java.lang.Enum<MiscBorder.BorderType>
      extended by zisko.multicastor.program.view.MiscBorder.BorderType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MiscBorder.BorderType>
Enclosing class:
MiscBorder

public static enum MiscBorder.BorderType
extends java.lang.Enum<MiscBorder.BorderType>

Enum welches bestimmt ob der Rahmen rot, gruen oder neutral gezeichnet werden muss, je nach dem ob ein Korrekter Input vorliegt.


Enum Constant Summary
FALSE
           
NEUTRAL
           
TRUE
           
 
Method Summary
static MiscBorder.BorderType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MiscBorder.BorderType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NEUTRAL

public static final MiscBorder.BorderType NEUTRAL

TRUE

public static final MiscBorder.BorderType TRUE

FALSE

public static final MiscBorder.BorderType FALSE
Method Detail

values

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

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

valueOf

public static MiscBorder.BorderType 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 name
java.lang.NullPointerException - if the argument is null