public static enum Request.Result extends Enum<Request.Result>
| Modifier and Type | Method and Description |
|---|---|
static Request.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Request.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Request.Result Ok
public static final Request.Result Error
public static final Request.Result Timeout
public static Request.Result[] values()
for (Request.Result c : Request.Result.values()) System.out.println(c);
public static Request.Result 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 © 2007–2021 "Tigase, Inc.". All rights reserved.