Enum Farbe

java.lang.Object
  extended by java.lang.Enum<Farbe>
      extended by Farbe
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Farbe>

public enum Farbe
extends java.lang.Enum<Farbe>

Vereinbart die für die Simulation nötigen Standardfarben.

Version:
1.0
Author:
Albert Wiedemann

Enum Constant Summary
blau
           
cyan
           
gelb
           
grau
           
gruen
           
magenta
           
rot
           
schwarz
           
weiss
           
 
Method Summary
 java.awt.Color AWTFarbe()
          Konvertiert die angegebene Farbe in ihr AWT-Pendant.
static Farbe valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Farbe[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

blau

public static final Farbe blau

cyan

public static final Farbe cyan

gelb

public static final Farbe gelb

grau

public static final Farbe grau

gruen

public static final Farbe gruen

magenta

public static final Farbe magenta

rot

public static final Farbe rot

schwarz

public static final Farbe schwarz

weiss

public static final Farbe weiss
Method Detail

AWTFarbe

public java.awt.Color AWTFarbe()
Konvertiert die angegebene Farbe in ihr AWT-Pendant.

Returns:
die entsprechende AWT-Farbe

valueOf

public static Farbe 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

values

public static final Farbe[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Farbe c : Farbe.values())
        System.out.println(c);

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