public interface Domain
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Remove all entries.
|
boolean |
contains(LocalPlayer player)
Returns true if a domain contains a player.
|
boolean |
contains(java.lang.String playerName)
Deprecated.
names are deprecated in MC 1.7+ in favor of UUIDs
|
boolean |
contains(java.util.UUID uniqueId)
Returns true if a domain contains a player.
|
int |
size()
Get the number of entries.
|
boolean contains(LocalPlayer player)
player - the player to checkplayerboolean contains(java.util.UUID uniqueId)
This method doesn't check for groups!
uniqueId - the UUID of the user@Deprecated boolean contains(java.lang.String playerName)
This method doesn't check for groups!
playerName - The name of the player to checkint size()
void clear()