JXTA

net.jxta.impl.endpoint.tls
Enum TlsConn.HandshakeState

java.lang.Object
  extended by java.lang.Enum<TlsConn.HandshakeState>
      extended by net.jxta.impl.endpoint.tls.TlsConn.HandshakeState
All Implemented Interfaces:
Serializable, Comparable<TlsConn.HandshakeState>
Enclosing class:
TlsConn

static enum TlsConn.HandshakeState
extends Enum<TlsConn.HandshakeState>

Tracks the state of our TLS connection with a remote peer.


Enum Constant Summary
CLIENTSTART
          Handshake is ready to begin.
CONNECTIONCLOSING
          Connection is closing.
CONNECTIONDEAD
          Connection has died.
HANDSHAKEFAILED
          Handshake failed to complete.
HANDSHAKEFINISHED
          Handshake completed successfully.
HANDSHAKESTARTED
          Handshake is in progress.
SERVERSTART
          Handshake is ready to begin.
 
Method Summary
static TlsConn.HandshakeState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TlsConn.HandshakeState[] 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

CLIENTSTART

public static final TlsConn.HandshakeState CLIENTSTART
Handshake is ready to begin. We will be the client side.


SERVERSTART

public static final TlsConn.HandshakeState SERVERSTART
Handshake is ready to begin. We will be the server side.


HANDSHAKESTARTED

public static final TlsConn.HandshakeState HANDSHAKESTARTED
Handshake is in progress.


HANDSHAKEFAILED

public static final TlsConn.HandshakeState HANDSHAKEFAILED
Handshake failed to complete.


HANDSHAKEFINISHED

public static final TlsConn.HandshakeState HANDSHAKEFINISHED
Handshake completed successfully.


CONNECTIONCLOSING

public static final TlsConn.HandshakeState CONNECTIONCLOSING
Connection is closing.


CONNECTIONDEAD

public static final TlsConn.HandshakeState CONNECTIONDEAD
Connection has died.

Method Detail

values

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

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

valueOf

public static TlsConn.HandshakeState 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

JXSE