| Package | Description |
|---|---|
| com.github.theholywaffle.teamspeak3 | |
| com.github.theholywaffle.teamspeak3.api | |
| com.github.theholywaffle.teamspeak3.commands |
| Modifier and Type | Method and Description |
|---|---|
void |
TS3Api.editChannel(int channelId,
ChannelProperty property,
String value)
Changes a single property of the given channel.
|
CommandFuture<Void> |
TS3ApiAsync.editChannel(int channelId,
ChannelProperty property,
String value)
Changes a single property of the given channel.
|
| Modifier and Type | Method and Description |
|---|---|
int |
TS3Api.createChannel(String name,
Map<ChannelProperty,String> options)
Creates a new channel with a given name using the given properties and returns its ID.
|
CommandFuture<Integer> |
TS3ApiAsync.createChannel(String name,
Map<ChannelProperty,String> options)
Creates a new channel with a given name using the given properties and returns its ID.
|
void |
TS3Api.editChannel(int channelId,
Map<ChannelProperty,String> options)
Changes a channel's configuration using the given properties.
|
CommandFuture<Void> |
TS3ApiAsync.editChannel(int channelId,
Map<ChannelProperty,String> options)
Changes a channel's configuration using the given properties.
|
| Modifier and Type | Method and Description |
|---|---|
static ChannelProperty |
ChannelProperty.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChannelProperty[] |
ChannelProperty.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static Command |
ChannelCommands.channelCreate(String name,
Map<ChannelProperty,String> options) |
static Command |
ChannelCommands.channelEdit(int channelId,
Map<ChannelProperty,String> options) |
Released under the MIT license.