public static enum Auth.Type extends Enum<Auth.Type>
Enum Constant and Description |
---|
CREDENTIALS |
RAX_APIKEY |
TOKEN |
Modifier and Type | Method and Description |
---|---|
static Auth.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Auth.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Auth.Type CREDENTIALS
public static final Auth.Type TOKEN
public static final Auth.Type RAX_APIKEY
public static Auth.Type[] values()
for (Auth.Type c : Auth.Type.values()) System.out.println(c);
public static Auth.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 nullCopyright © 2017. All rights reserved.