de.cesr.lara.components.param
Enum LBasicPa

java.lang.Object
  extended by java.lang.Enum<LBasicPa>
      extended by de.cesr.lara.components.param.LBasicPa
All Implemented Interfaces:
Serializable, Comparable<LBasicPa>

public enum LBasicPa
extends Enum<LBasicPa>


Enum Constant Summary
EVENTBUS_FORCE_SEQUENTIAL
          If true, the eventbus is forced to handle events sequentially.
LOG_PATH
           
 
Method Summary
 Object getDefaultValue()
           
 Class<?> getType()
           
static LBasicPa valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LBasicPa[] 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

EVENTBUS_FORCE_SEQUENTIAL

public static final LBasicPa EVENTBUS_FORCE_SEQUENTIAL
If true, the eventbus is forced to handle events sequentially.


LOG_PATH

public static final LBasicPa LOG_PATH
Method Detail

values

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

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

valueOf

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

getType

public Class<?> getType()

getDefaultValue

public Object getDefaultValue()