public static enum UserAuth.Result extends Enum<UserAuth.Result>
Modifier and Type | Method and Description |
---|---|
static UserAuth.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserAuth.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserAuth.Result Success
public static final UserAuth.Result Failure
public static final UserAuth.Result Continued
public static UserAuth.Result[] values()
for (UserAuth.Result c : UserAuth.Result.values()) System.out.println(c);
public static UserAuth.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 © 2008–2016 The Apache Software Foundation. All rights reserved.