public static enum TS3Query.Protocol extends Enum<TS3Query.Protocol>
| Modifier and Type | Method and Description |
|---|---|
static TS3Query.Protocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TS3Query.Protocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TS3Query.Protocol RAW
public static final TS3Query.Protocol SSH
public static TS3Query.Protocol[] values()
for (TS3Query.Protocol c : TS3Query.Protocol.values()) System.out.println(c);
public static TS3Query.Protocol 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 nullReleased under the MIT license.