public enum PlaygroundRequestIncludeCredentials extends java.lang.Enum<PlaygroundRequestIncludeCredentials>
| Enum Constant and Description |
|---|
INCLUDE |
OMIT |
SAME_ORIGIN |
| Modifier and Type | Method and Description |
|---|---|
static PlaygroundRequestIncludeCredentials |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlaygroundRequestIncludeCredentials[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlaygroundRequestIncludeCredentials OMIT
public static final PlaygroundRequestIncludeCredentials INCLUDE
public static final PlaygroundRequestIncludeCredentials SAME_ORIGIN
public static PlaygroundRequestIncludeCredentials[] values()
for (PlaygroundRequestIncludeCredentials c : PlaygroundRequestIncludeCredentials.values()) System.out.println(c);
public static PlaygroundRequestIncludeCredentials 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