logelei
Enum Loesung.Tier

java.lang.Object
  extended by java.lang.Enum<Loesung.Tier>
      extended by logelei.Loesung.Tier
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Loesung.Tier>
Enclosing class:
Loesung

public static enum Loesung.Tier
extends java.lang.Enum<Loesung.Tier>

Die Tiere des Rätsels.


Enum Constant Summary
Hunde
          Die Hunde aus dem Rätsel.
Katze
          Die Katze aus dem Rätsel.
Pferde
          Die Pferde aus dem Rätsel.
Unbekannt
          Das nichtgenannte Tier aus dem Rätsel.
Voegel
          Die Vögel aus dem Rätsel.
 
Method Summary
static Loesung.Tier valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Loesung.Tier[] 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

Katze

public static final Loesung.Tier Katze
Die Katze aus dem Rätsel.


Voegel

public static final Loesung.Tier Voegel
Die Vögel aus dem Rätsel.


Hunde

public static final Loesung.Tier Hunde
Die Hunde aus dem Rätsel.


Pferde

public static final Loesung.Tier Pferde
Die Pferde aus dem Rätsel.


Unbekannt

public static final Loesung.Tier Unbekannt
Das nichtgenannte Tier aus dem Rätsel.

Method Detail

values

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

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

valueOf

public static Loesung.Tier 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