dk.i1.sctp
Enum SCTPNotificationAssociationChange.State

java.lang.Object
  extended by java.lang.Enum<SCTPNotificationAssociationChange.State>
      extended by dk.i1.sctp.SCTPNotificationAssociationChange.State
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SCTPNotificationAssociationChange.State>
Enclosing class:
SCTPNotificationAssociationChange

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


Enum Constant Summary
SCTP_CANT_STR_ASSOC
           
SCTP_COMM_LOST
           
SCTP_COMM_UP
           
SCTP_RESTART
           
SCTP_SHUTDOWN_COMP
           
 
Method Summary
static SCTPNotificationAssociationChange.State valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SCTPNotificationAssociationChange.State[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SCTP_COMM_UP

public static final SCTPNotificationAssociationChange.State SCTP_COMM_UP

SCTP_COMM_LOST

public static final SCTPNotificationAssociationChange.State SCTP_COMM_LOST

SCTP_RESTART

public static final SCTPNotificationAssociationChange.State SCTP_RESTART

SCTP_SHUTDOWN_COMP

public static final SCTPNotificationAssociationChange.State SCTP_SHUTDOWN_COMP

SCTP_CANT_STR_ASSOC

public static final SCTPNotificationAssociationChange.State SCTP_CANT_STR_ASSOC
Method Detail

values

public static final SCTPNotificationAssociationChange.State[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(SCTPNotificationAssociationChange.State c : SCTPNotificationAssociationChange.State.values())
        System.out.println(c);

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

valueOf

public static SCTPNotificationAssociationChange.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