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);