Enum Class TimerCall.RESULT

java.lang.Object
java.lang.Enum<TimerCall.RESULT>
at.letto.tools.threads.TimerCall.RESULT
All Implemented Interfaces:
Serializable, Comparable<TimerCall.RESULT>, Constable
Enclosing class:
TimerCall

public static enum TimerCall.RESULT extends Enum<TimerCall.RESULT>
Status des Ergebnisses eines Calls
OK alles hat funktioniert
RUNTIMEEXCEPTION Es hat eine RuntimeException gegeben
EXCEPTION Es hat eine Exception gegeben
ERROR Es hat einen Error gegeben
TIMEOUT Es hat ein Timeout gegeben
TIMEOUTKILLED Es hat ein Timeout gegeben bei dem der Thread nicht korrekt beendet werden konnte, weshalb er interrupted wurde ZOMBIE Es hat ein Timeout gegeben bei dem der Thread nicht korrekt beendet werden konnte. Da der Thread nicht interrupted werden konnte bleibt er als Zombie bestehen.
Author:
Werner Damböck
  • Enum Constant Details

  • Constructor Details

    • RESULT

      private RESULT()
  • Method Details

    • values

      public static TimerCall.RESULT[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TimerCall.RESULT valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null