public static enum OutboundEstablishState2.IntroState extends Enum<OutboundEstablishState2.IntroState>
| Enum Constant and Description |
|---|
INTRO_STATE_BOB_REJECTwe got a rejection from this introducer |
INTRO_STATE_CHARLIE_REJECTwe got a rejection from Charlie via this introducer |
INTRO_STATE_CONNECT_FAILEDwe failed to connect to the introducer |
INTRO_STATE_CONNECTEDwe are connected to this introducer |
INTRO_STATE_CONNECTINGwe are connecting to the introducer |
INTRO_STATE_DISCONNECTEDhe disconnected from us along the way |
INTRO_STATE_EXPIREDintroducer has expired |
INTRO_STATE_FAILEDunspecified failure |
INTRO_STATE_HAS_RIwe have the introducer RI |
INTRO_STATE_INITnothing happened yet |
INTRO_STATE_INVALIDthis peer is not an introducer |
INTRO_STATE_LOOKUP_FAILEDwe tried to lookup the introducer RI, no luck |
INTRO_STATE_LOOKUP_SENTlookup for the introducer RI was sent |
INTRO_STATE_REJECTEDwe rejected this introducer for some reason |
INTRO_STATE_RELAY_CHARLIE_ACCEPTEDwe got a good relay response via this introducer |
INTRO_STATE_RELAY_REQUEST_SENTwe sent the relay request to this introducer |
INTRO_STATE_RELAY_RESPONSE_TIMEOUTwe failed to get a relay response from this introducer |
INTRO_STATE_SUCCESSwe got an accept from Charlie via this introducer |
INTRO_STATE_USthis peer is us |
| Modifier and Type | Method and Description |
|---|---|
static OutboundEstablishState2.IntroState | valueOf(String name)Returns the enum constant of this type with the specified name. |
static OutboundEstablishState2.IntroState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. |
public static final OutboundEstablishState2.IntroState INTRO_STATE_BOB_REJECT
public static final OutboundEstablishState2.IntroState INTRO_STATE_CHARLIE_REJECT
public static final OutboundEstablishState2.IntroState INTRO_STATE_CONNECT_FAILED
public static final OutboundEstablishState2.IntroState INTRO_STATE_CONNECTED
public static final OutboundEstablishState2.IntroState INTRO_STATE_CONNECTING
public static final OutboundEstablishState2.IntroState INTRO_STATE_DISCONNECTED
public static final OutboundEstablishState2.IntroState INTRO_STATE_EXPIRED
public static final OutboundEstablishState2.IntroState INTRO_STATE_FAILED
public static final OutboundEstablishState2.IntroState INTRO_STATE_HAS_RI
public static final OutboundEstablishState2.IntroState INTRO_STATE_INIT
public static final OutboundEstablishState2.IntroState INTRO_STATE_INVALID
public static final OutboundEstablishState2.IntroState INTRO_STATE_LOOKUP_FAILED
public static final OutboundEstablishState2.IntroState INTRO_STATE_LOOKUP_SENT
public static final OutboundEstablishState2.IntroState INTRO_STATE_REJECTED
public static final OutboundEstablishState2.IntroState INTRO_STATE_RELAY_CHARLIE_ACCEPTED
public static final OutboundEstablishState2.IntroState INTRO_STATE_RELAY_REQUEST_SENT
public static final OutboundEstablishState2.IntroState INTRO_STATE_RELAY_RESPONSE_TIMEOUT
public static final OutboundEstablishState2.IntroState INTRO_STATE_SUCCESS
public static final OutboundEstablishState2.IntroState INTRO_STATE_US
public static OutboundEstablishState2.IntroState 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 OutboundEstablishState2.IntroState[] values()
for (OutboundEstablishState2.IntroState c : OutboundEstablishState2.IntroState.values()) System.out.println(c);