public static enum FeatureNegotiator.Status extends Enum<FeatureNegotiator.Status>
| Enum Constant and Description |
|---|
FAILURE
If the feature negotiation has failed.
|
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 FeatureNegotiator.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeatureNegotiator.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureNegotiator.Status SUCCESS
public static final FeatureNegotiator.Status FAILURE
public static final FeatureNegotiator.Status INCOMPLETE
public static final FeatureNegotiator.Status IGNORE
public static FeatureNegotiator.Status[] values()
for (FeatureNegotiator.Status c : FeatureNegotiator.Status.values()) System.out.println(c);
public static FeatureNegotiator.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 XMPP.rocks. All rights reserved.