Package net.md_5.bungee.protocol.packet
Class Handshake
- java.lang.Object
-
- net.md_5.bungee.protocol.DefinedPacket
-
- net.md_5.bungee.protocol.packet.Handshake
-
public class Handshake extends DefinedPacket
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetHost()intgetPort()intgetProtocolVersion()intgetRequestedProtocol()voidhandle(AbstractPacketHandler handler)inthashCode()voidread(io.netty.buffer.ByteBuf buf)voidsetHost(String host)voidsetPort(int port)voidsetProtocolVersion(int protocolVersion)voidsetRequestedProtocol(int requestedProtocol)StringtoString()voidwrite(io.netty.buffer.ByteBuf buf)-
Methods inherited from class net.md_5.bungee.protocol.DefinedPacket
expectedMaxLength, expectedMinLength, read, readArray, readArray, readString, readString, readStringArray, readTag, readUUID, readVarInt, readVarInt, readVarIntArray, readVarShort, toArray, write, writeArray, writeString, writeString, writeStringArray, writeTag, writeUUID, writeVarInt, writeVarShort
-
-
-
-
Constructor Detail
-
Handshake
public Handshake()
-
Handshake
public Handshake(int protocolVersion, String host, int port, int requestedProtocol)
-
-
Method Detail
-
read
public void read(io.netty.buffer.ByteBuf buf)
- Overrides:
readin classDefinedPacket
-
write
public void write(io.netty.buffer.ByteBuf buf)
- Overrides:
writein classDefinedPacket
-
handle
public void handle(AbstractPacketHandler handler) throws Exception
- Specified by:
handlein classDefinedPacket- Throws:
Exception
-
getProtocolVersion
public int getProtocolVersion()
-
getHost
public String getHost()
-
getPort
public int getPort()
-
getRequestedProtocol
public int getRequestedProtocol()
-
setProtocolVersion
public void setProtocolVersion(int protocolVersion)
-
setHost
public void setHost(String host)
-
setPort
public void setPort(int port)
-
setRequestedProtocol
public void setRequestedProtocol(int requestedProtocol)
-
toString
public String toString()
- Specified by:
toStringin classDefinedPacket
-
equals
public boolean equals(Object o)
- Specified by:
equalsin classDefinedPacket
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Specified by:
hashCodein classDefinedPacket
-
-