Nested Class Summary
Nested Classes
Enum Constant Summary
Enum Constants
Send to all connected proxies
Tries to send to all servers.
Sends to all servers that have players connected.
Send to all proxies that aren't the current proxy
Tries to send to all other servers.
Sends to all other servers that have players connected.
Send to the players current proxy.
Requires a proxy id or player parameter
Send to the players current server.
Requires a server name or player parameter.
Method Summary
All Methods Static Methods Instance Methods Concrete Methods
Returns the enum constant of this type with the specified name.
Returns an array containing the constants of this enum type, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
ALL_WITH_PLAYERS
Sends to all servers that have players connected. (So this doesn't queue with plugin messages)
ALL_QUEUE
Tries to send to all servers. (With plugin messages it queues if no player is connected to server)
OTHERS_WITH_PLAYERS
Sends to all other servers that have players connected. (So this doesn't queue with plugin messages)
OTHERS_QUEUE
Tries to send to all other servers. (With plugin messages it queues if no player is connected to server)
SERVER
Send to the players current server.
Requires a server name or player parameter.
PROXY
Send to the players current proxy.
Requires a proxy id or player parameter
ALL_PROXIES
Send to all connected proxies
OTHER_PROXIES
Send to all proxies that aren't the current proxy
Method Details
values
Returns an array containing the constants of this enum type, in
the order they are declared.
Returns:
an array containing the constants of this enum type, in the order they are declared
valueOf
Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
Parameters:
name
- the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException
- if this enum type has no constant with the specified name
NullPointerException
- if the argument is null