Package io.papermc.paper.event.world
Record Class StructuresLocateEvent.Result
java.lang.Object
java.lang.Record
io.papermc.paper.event.world.StructuresLocateEvent.Result
- Enclosing class:
StructuresLocateEvent
Result for
StructuresLocateEvent
.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.pos()
Returns the value of thepos
record component.position()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the value of thestructure
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Result
Creates an instance of aResult
record class.- Parameters:
pos
- the value for thepos
record componentstructure
- the value for thestructure
record component
-
-
Method Details
-
position
Deprecated, for removal: This API element is subject to removal in a future version. -
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)
. -
pos
Returns the value of thepos
record component.- Returns:
- the value of the
pos
record component
-
structure
Returns the value of thestructure
record component.- Returns:
- the value of the
structure
record component
-