public static enum PlaylistProxy.Flags extends java.lang.Enum<PlaylistProxy.Flags>
Enum Constant and Description |
---|
AUTH_TOKEN_HEADER
Make Playlist Proxy require client authentication token in the
request HTTP header 'Wasabi-AuthToken'.
|
Modifier and Type | Method and Description |
---|---|
static PlaylistProxy.Flags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlaylistProxy.Flags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlaylistProxy.Flags AUTH_TOKEN_HEADER
public static PlaylistProxy.Flags[] values()
for (PlaylistProxy.Flags c : PlaylistProxy.Flags.values()) System.out.println(c);
public static PlaylistProxy.Flags 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