public static enum StreamFeatureNegotiator.Status extends Enum<StreamFeatureNegotiator.Status>
| Enum Constant and Description |
|---|
IGNORE
If the feature has been ignored.
|
INCOMPLETE
If the feature negotiation is in progress and has not yet completed.
|
SUCCESS
If the feature negotiation has been successful.
|
| Modifier and Type | Method and Description |
|---|---|
static StreamFeatureNegotiator.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamFeatureNegotiator.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamFeatureNegotiator.Status SUCCESS
public static final StreamFeatureNegotiator.Status INCOMPLETE
public static final StreamFeatureNegotiator.Status IGNORE
public static StreamFeatureNegotiator.Status[] values()
for (StreamFeatureNegotiator.Status c : StreamFeatureNegotiator.Status.values()) System.out.println(c);
public static StreamFeatureNegotiator.Status 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 nullCopyright © 2014–2016 XMPP.rocks. All rights reserved.