public static enum StanzaError.Type extends Enum<StanzaError.Type>
<error/> 'type' attribute.
The "error-type" MUST be one of the following:
- auth -- retry after providing credentials
- cancel -- do not retry (the error cannot be remedied)
- continue -- proceed (the condition was only a warning)
- modify -- retry after changing the data sent
- wait -- retry after waiting (the error is temporary)
| Enum Constant and Description |
|---|
AUTH
Retry after providing credentials.
|
CANCEL
Do not retry (the error cannot be remedied).
|
CONTINUE
Proceed (the condition was only a warning).
|
MODIFY
Retry after changing the data sent.
|
WAIT
Retry after waiting (the error is temporary).
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static StanzaError.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StanzaError.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StanzaError.Type AUTH
public static final StanzaError.Type CANCEL
public static final StanzaError.Type CONTINUE
public static final StanzaError.Type MODIFY
public static final StanzaError.Type WAIT
public static StanzaError.Type[] values()
for (StanzaError.Type c : StanzaError.Type.values()) System.out.println(c);
public static StanzaError.Type 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 final String toString()
toString in class Enum<StanzaError.Type>Copyright © 2014–2018 XMPP.rocks. All rights reserved.