public enum RequestOptionFlags extends java.lang.Enum<RequestOptionFlags>
Check what request header or paraameters are required or default to an internal value
Enum Constant and Description |
---|
AUTHORIZATION_HEADER
Requires authorization header
|
CAN_RUN_AS_SYSTEM_USER
Run this query as system user - the one inside the notesid
|
DB_USE_DEFAULT_IF_MISSING
User keepconfig if parameter is missing
|
Modifier and Type | Method and Description |
---|---|
static RequestOptionFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestOptionFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestOptionFlags AUTHORIZATION_HEADER
public static final RequestOptionFlags DB_USE_DEFAULT_IF_MISSING
public static final RequestOptionFlags CAN_RUN_AS_SYSTEM_USER
public static RequestOptionFlags[] values()
for (RequestOptionFlags c : RequestOptionFlags.values()) System.out.println(c);
public static RequestOptionFlags valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null