public static enum InboundEstablishState.InboundState extends Enum<InboundEstablishState.InboundState>
| Enum Constant and Description |
|---|
IB_STATE_COMPLETESuccessful completion, PeerState created and added to transport |
IB_STATE_CONFIRMED_COMPLETELYwe have all the confirmation packets |
IB_STATE_CONFIRMED_PARTIALLYwe have received one but not all the confirmation packets - never happens in practice - see below. |
IB_STATE_CREATED_SENTwe have sent a signed creation packet |
IB_STATE_FAILEDwe are explicitly failing it |
IB_STATE_REQUEST_BAD_TOKEN_RECEIVEDSSU2: We have received a request but the token is bad |
IB_STATE_REQUEST_RECEIVEDwe have received an initial request |
IB_STATE_RETRY_SENTSSU2: We have sent a retry |
IB_STATE_TOKEN_REQUEST_RECEIVEDSSU2: We have received a token request |
IB_STATE_UNKNOWNnothin' known yet |
| Modifier and Type | Method and Description |
|---|---|
static InboundEstablishState.InboundState | valueOf(String name)Returns the enum constant of this type with the specified name. |
static InboundEstablishState.InboundState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. |
public static final InboundEstablishState.InboundState IB_STATE_COMPLETE
public static final InboundEstablishState.InboundState IB_STATE_CONFIRMED_COMPLETELY
public static final InboundEstablishState.InboundState IB_STATE_CONFIRMED_PARTIALLY
public static final InboundEstablishState.InboundState IB_STATE_CREATED_SENT
public static final InboundEstablishState.InboundState IB_STATE_FAILED
public static final InboundEstablishState.InboundState IB_STATE_REQUEST_BAD_TOKEN_RECEIVED
public static final InboundEstablishState.InboundState IB_STATE_REQUEST_RECEIVED
public static final InboundEstablishState.InboundState IB_STATE_RETRY_SENT
public static final InboundEstablishState.InboundState IB_STATE_TOKEN_REQUEST_RECEIVED
public static final InboundEstablishState.InboundState IB_STATE_UNKNOWN
public static InboundEstablishState.InboundState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static InboundEstablishState.InboundState[] values()
for (InboundEstablishState.InboundState c : InboundEstablishState.InboundState.values()) System.out.println(c);