Record Class GreaterThanGrowthComparator

java.lang.Object
java.lang.Record
com.pixelmonmod.pixelmon.api.pokemon.growth.comparator.type.GreaterThanGrowthComparator
All Implemented Interfaces:
GrowthComparator

public record GreaterThanGrowthComparator(double min) extends Record implements GrowthComparator
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.Codec<GreaterThanGrowthComparator>
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates an instance of a GreaterThanGrowthComparator record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    com.mojang.serialization.Codec<GreaterThanGrowthComparator>
     
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    boolean
    inRange(double mean, double standardDeviation, double size)
    Checks if the growth of the Pokemon is within the configured range for a normal distribution with the given mean and standard deviation.
    double
    min()
    Returns the value of the min record component.
    double
    random(double mean, double standardDeviation)
    Generates a random value from a normal distribution with the given mean and standard deviation.
    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
  • Field Details

  • Constructor Details

    • GreaterThanGrowthComparator

      public GreaterThanGrowthComparator(double min)
      Creates an instance of a GreaterThanGrowthComparator record class.
      Parameters:
      min - the value for the min record component
  • Method Details

    • codec

      public com.mojang.serialization.Codec<GreaterThanGrowthComparator> codec()
      Specified by:
      codec in interface GrowthComparator
    • inRange

      public boolean inRange(double mean, double standardDeviation, double size)
      Description copied from interface: GrowthComparator
      Checks if the growth of the Pokemon is within the configured range for a normal distribution with the given mean and standard deviation.
      Specified by:
      inRange in interface GrowthComparator
      Parameters:
      mean - The mean of the normal distribution
      standardDeviation - The standard deviation of the normal distribution
      size - The size of the Pokemon
      Returns:
      True if the growth is within the range, false otherwise
    • random

      public double random(double mean, double standardDeviation)
      Description copied from interface: GrowthComparator
      Generates a random value from a normal distribution with the given mean and standard deviation.
      Specified by:
      random in interface GrowthComparator
      Parameters:
      mean - The mean of the normal distribution
      standardDeviation - The standard deviation of the normal distribution
      Returns:
      The random value
    • 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 '=='.
      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.
    • min

      public double min()
      Returns the value of the min record component.
      Returns:
      the value of the min record component