Serializable, Comparable<PlayerLoginEvent.Result>public static enum PlayerLoginEvent.Result extends Enum<PlayerLoginEvent.Result>
| Enum Constant | Description | 
|---|---|
| ALLOWED | The player is allowed to log in | 
| KICK_BANNED | The player is not allowed to log in, due to them being banned | 
| KICK_FULL | The player is not allowed to log in, due to the server being full | 
| KICK_OTHER | The player is not allowed to log in, for reasons undefined | 
| KICK_WHITELIST | The player is not allowed to log in, due to them not being on the
 white list | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static PlayerLoginEvent.Result | valueOf(String name) | Returns the enum constant of this type with the specified name. | 
| static PlayerLoginEvent.Result[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PlayerLoginEvent.Result ALLOWED
public static final PlayerLoginEvent.Result KICK_FULL
public static final PlayerLoginEvent.Result KICK_BANNED
public static final PlayerLoginEvent.Result KICK_WHITELIST
public static final PlayerLoginEvent.Result KICK_OTHER
public static PlayerLoginEvent.Result[] values()
for (PlayerLoginEvent.Result c : PlayerLoginEvent.Result.values()) System.out.println(c);
public static PlayerLoginEvent.Result 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 nullCopyright © 2020. All rights reserved.