com.neeve.aep
Enum AepEngine.MessagingState

java.lang.Object
  extended by java.lang.Enum<AepEngine.MessagingState>
      extended by com.neeve.aep.AepEngine.MessagingState
All Implemented Interfaces:
Serializable, Comparable<AepEngine.MessagingState>
Enclosing class:
AepEngine

public static enum AepEngine.MessagingState
extends Enum<AepEngine.MessagingState>

Enumerates an AEP engine's messaging state.


Enum Constant Summary
Init
          Indicates messaging is not started and was never started.
Started
          Indicates messaging is started and operational
Starting
          Indicates messaging is starting.
Stopped
          Indicates messaging was started and now is stopped.
 
Method Summary
static AepEngine.MessagingState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AepEngine.MessagingState[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Init

public static final AepEngine.MessagingState Init
Indicates messaging is not started and was never started.


Starting

public static final AepEngine.MessagingState Starting
Indicates messaging is starting.


Started

public static final AepEngine.MessagingState Started
Indicates messaging is started and operational


Stopped

public static final AepEngine.MessagingState Stopped
Indicates messaging was started and now is stopped.

Method Detail

values

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

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

valueOf

public static AepEngine.MessagingState 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 © 2016 Neeve Research, LLC. All Rights Reserved.