public enum ResponseLevel extends Enum<ResponseLevel>
Enum Constant and Description |
---|
ALL
Response contains all fields (even empty)
|
DEFAULT
Default level configured on KeyShield SSO for given API key is used
|
EXTENDED
Response contains optional infomation (clientInfo, etc.)
|
Modifier and Type | Method and Description |
---|---|
static ResponseLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResponseLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseLevel ALL
public static final ResponseLevel DEFAULT
public static final ResponseLevel EXTENDED
public static ResponseLevel 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 nullpublic static ResponseLevel[] values()
for (ResponseLevel c : ResponseLevel.values()) System.out.println(c);
Copyright © 2013 TDP Ltd. All Rights Reserved.