net.sf.lavalamp.device
Enum OnError

java.lang.Object
  extended by java.lang.Enum<OnError>
      extended by net.sf.lavalamp.device.OnError
All Implemented Interfaces:
Serializable, Comparable<OnError>

public enum OnError
extends Enum<OnError>


Enum Constant Summary
BLINK
          device blinks when error occurs
CRASH
          application crashes when error occurs
STATUSQUO
          device remains on or off when error occurs
 
Method Summary
static OnError valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OnError[] 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

BLINK

public static final OnError BLINK
device blinks when error occurs


CRASH

public static final OnError CRASH
application crashes when error occurs


STATUSQUO

public static final OnError STATUSQUO
device remains on or off when error occurs

Method Detail

values

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

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

valueOf

public static OnError 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. All Rights Reserved.