public static enum Configuration.Channels extends java.lang.Enum<Configuration.Channels>
| Enum Constant and Description |
|---|
api
Default channel where requests are made
|
daemon
Desktop clients channel
|
upload
Upload channel
|
| Modifier and Type | Method and Description |
|---|---|
static Configuration.Channels |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.Channels[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.Channels api
public static final Configuration.Channels daemon
public static final Configuration.Channels upload
public static Configuration.Channels[] values()
for (Configuration.Channels c : Configuration.Channels.values()) System.out.println(c);
public static Configuration.Channels 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