Record Class RocketStationMenu.DimensionEntry

java.lang.Object
java.lang.Record
com.lightning.northstar.block.tech.rocket_station.RocketStationMenu.DimensionEntry
Enclosing class:
RocketStationMenu

public static record RocketStationMenu.DimensionEntry(@Nullable Planet planet, @Nullable PlanetDimension dimension, List<it.unimi.dsi.fastutil.Pair<RocketDestination,net.minecraft.network.chat.Component>> destinations, net.minecraft.network.chat.Component text) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    DimensionEntry(@Nullable Planet planet, @Nullable PlanetDimension dimension, List<it.unimi.dsi.fastutil.Pair<RocketDestination,net.minecraft.network.chat.Component>> destinations, net.minecraft.network.chat.Component text)
    Creates an instance of a DimensionEntry record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    List<it.unimi.dsi.fastutil.Pair<RocketDestination,net.minecraft.network.chat.Component>>
    Returns the value of the destinations record component.
    @Nullable PlanetDimension
    Returns the value of the dimension record component.
    @Nullable net.minecraft.resources.ResourceLocation
     
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    @Nullable Planet
    Returns the value of the planet record component.
    net.minecraft.network.chat.Component
    Returns the value of the text record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • DimensionEntry

      public DimensionEntry(@Nullable @Nullable Planet planet, @Nullable @Nullable PlanetDimension dimension, List<it.unimi.dsi.fastutil.Pair<RocketDestination,net.minecraft.network.chat.Component>> destinations, net.minecraft.network.chat.Component text)
      Creates an instance of a DimensionEntry record class.
      Parameters:
      planet - the value for the planet record component
      dimension - the value for the dimension record component
      destinations - the value for the destinations record component
      text - the value for the text record component
  • Method Details

    • dimensionId

      @Nullable public @Nullable net.minecraft.resources.ResourceLocation dimensionId()
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • planet

      @Nullable public @Nullable Planet planet()
      Returns the value of the planet record component.
      Returns:
      the value of the planet record component
    • dimension

      @Nullable public @Nullable PlanetDimension dimension()
      Returns the value of the dimension record component.
      Returns:
      the value of the dimension record component
    • destinations

      public List<it.unimi.dsi.fastutil.Pair<RocketDestination,net.minecraft.network.chat.Component>> destinations()
      Returns the value of the destinations record component.
      Returns:
      the value of the destinations record component
    • text

      public net.minecraft.network.chat.Component text()
      Returns the value of the text record component.
      Returns:
      the value of the text record component