java.lang.Object
java.lang.Record
net.minestom.server.Auth.Bungee
- All Implemented Interfaces:
Auth
- Enclosing interface:
Auth
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minestom.server.Auth
Auth.Bungee, Auth.Offline, Auth.Online, Auth.Velocity
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebungeeGuardTokens
record component.final boolean
Indicates whether some other object is "equal to" this one.boolean
guard()
final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.boolean
validToken
(String token)
-
Constructor Details
-
Bungee
Creates an instance of aBungee
record class.- Parameters:
bungeeGuardTokens
- the value for thebungeeGuardTokens
record component
-
Bungee
public Bungee()
-
-
Method Details
-
validToken
-
guard
public boolean guard() -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
bungeeGuardTokens
Returns the value of thebungeeGuardTokens
record component.- Returns:
- the value of the
bungeeGuardTokens
record component
-