Package net.md_5.bungee.api.event
Enum ServerKickEvent.State
- java.lang.Object
- 
- java.lang.Enum<ServerKickEvent.State>
- 
- net.md_5.bungee.api.event.ServerKickEvent.State
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ServerKickEvent.State>
 - Enclosing class:
- ServerKickEvent
 
 public static enum ServerKickEvent.State extends Enum<ServerKickEvent.State> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CONNECTEDCONNECTINGUNKNOWN
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static ServerKickEvent.StatevalueOf(String name)Returns the enum constant of this type with the specified name.static ServerKickEvent.State[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CONNECTINGpublic static final ServerKickEvent.State CONNECTING 
 - 
CONNECTEDpublic static final ServerKickEvent.State CONNECTED 
 - 
UNKNOWNpublic static final ServerKickEvent.State UNKNOWN 
 
- 
 - 
Method Detail- 
valuespublic static ServerKickEvent.State[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ServerKickEvent.State c : ServerKickEvent.State.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ServerKickEvent.State valueOf(String name) 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
 
 
- 
 
-