Record Class UtilTeleport.LevelLocation
java.lang.Object
java.lang.Record
net.lewmc.essence.teleportation.tp.UtilTeleport.LevelLocation
- Enclosing class:
UtilTeleport
public static record UtilTeleport.LevelLocation(org.bukkit.Location location, int finalLevels)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionLevelLocation(org.bukkit.Location location, int finalLevels) Creates an instance of aLevelLocationrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.intReturns the value of thefinalLevelsrecord component.final inthashCode()Returns a hash code value for this object.org.bukkit.Locationlocation()Returns the value of thelocationrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
LevelLocation
public LevelLocation(org.bukkit.Location location, int finalLevels) Creates an instance of aLevelLocationrecord class.- Parameters:
location- the value for thelocationrecord componentfinalLevels- the value for thefinalLevelsrecord component
-
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
location
public org.bukkit.Location location()Returns the value of thelocationrecord component.- Returns:
- the value of the
locationrecord component
-
finalLevels
public int finalLevels()Returns the value of thefinalLevelsrecord component.- Returns:
- the value of the
finalLevelsrecord component
-