com.ebmwebsourcing.easyviper.core.api.engine.behaviour
Enum Behaviour.State

java.lang.Object
  extended by java.lang.Enum<Behaviour.State>
      extended by com.ebmwebsourcing.easyviper.core.api.engine.behaviour.Behaviour.State
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Behaviour.State>
Enclosing interface:
Behaviour

public static enum Behaviour.State
extends java.lang.Enum<Behaviour.State>


Enum Constant Summary
ACTIVITY_ENDED
           
ACTIVITY_INACTIVE
           
ACTIVITY_STARTED
           
 
Method Summary
static Behaviour.State valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Behaviour.State[] 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

ACTIVITY_INACTIVE

public static final Behaviour.State ACTIVITY_INACTIVE

ACTIVITY_STARTED

public static final Behaviour.State ACTIVITY_STARTED

ACTIVITY_ENDED

public static final Behaviour.State ACTIVITY_ENDED
Method Detail

values

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

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

valueOf

public static Behaviour.State 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
java.lang.NullPointerException - if the argument is null


Copyright © 2009-2011 eBM WebSourcing. All Rights Reserved.