Record Class NumberRange.DoubleRange

java.lang.Object
java.lang.Record
net.minecraft.predicate.NumberRange.DoubleRange
Record Components:
min -
max -
squaredMin -
squaredMax -
All Implemented Interfaces:
NumberRange<Double>
Enclosing interface:
NumberRange<T extends Number>

public static record NumberRange.DoubleRange(Optional<Double> min, Optional<Double> max, Optional<Double> squaredMin, Optional<Double> squaredMax) extends Record implements NumberRange<Double>
Mappings:
Namespace Name
named net/minecraft/predicate/NumberRange$DoubleRange
intermediary net/minecraft/class_2096$class_2099
official de$c
named min
intermediary comp_1805
official e
named max
intermediary comp_1806
official f
named squaredMin
intermediary comp_1807
official g
named squaredMax
intermediary comp_1808
official h
  • Field Details

    • min

      private final Optional<Double> min
      The field for the min record component.
    • max

      private final Optional<Double> max
      The field for the max record component.
    • squaredMin

      private final Optional<Double> squaredMin
      The field for the squaredMin record component.
    • squaredMax

      private final Optional<Double> squaredMax
      The field for the squaredMax record component.
    • ANY

      public static final NumberRange.DoubleRange ANY
      Mappings:
      Namespace Name Mixin selector
      named ANY Lnet/minecraft/predicate/NumberRange$DoubleRange;ANY:Lnet/minecraft/predicate/NumberRange$DoubleRange;
      intermediary field_9705 Lnet/minecraft/class_2096$class_2099;field_9705:Lnet/minecraft/class_2096$class_2099;
      official c Lde$c;c:Lde$c;
    • CODEC

      public static final com.mojang.serialization.Codec<NumberRange.DoubleRange> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/predicate/NumberRange$DoubleRange;CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_45762 Lnet/minecraft/class_2096$class_2099;field_45762:Lcom/mojang/serialization/Codec;
      official d Lde$c;d:Lcom/mojang/serialization/Codec;
  • Constructor Details

    • DoubleRange

      private DoubleRange(Optional<Double> min, Optional<Double> max)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/predicate/NumberRange$DoubleRange;<init>(Ljava/util/Optional;Ljava/util/Optional;)V
      intermediary <init> Lnet/minecraft/class_2096$class_2099;<init>(Ljava/util/Optional;Ljava/util/Optional;)V
      official <init> Lde$c;<init>(Ljava/util/Optional;Ljava/util/Optional;)V
    • DoubleRange

      public DoubleRange(Optional<Double> optional, Optional<Double> optional2, Optional<Double> optional3, Optional<Double> optional4)
  • Method Details

    • create

      private static NumberRange.DoubleRange create(com.mojang.brigadier.StringReader reader, Optional<Double> min, Optional<Double> max) throws com.mojang.brigadier.exceptions.CommandSyntaxException
      Throws:
      com.mojang.brigadier.exceptions.CommandSyntaxException
      Mappings:
      Namespace Name Mixin selector
      named create Lnet/minecraft/predicate/NumberRange$DoubleRange;create(Lcom/mojang/brigadier/StringReader;Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/predicate/NumberRange$DoubleRange;
      intermediary method_9046 Lnet/minecraft/class_2096$class_2099;method_9046(Lcom/mojang/brigadier/StringReader;Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/class_2096$class_2099;
      official a Lde$c;a(Lcom/mojang/brigadier/StringReader;Ljava/util/Optional;Ljava/util/Optional;)Lde$c;
    • square

      private static Optional<Double> square(Optional<Double> value)
      Mappings:
      Namespace Name Mixin selector
      named square Lnet/minecraft/predicate/NumberRange$DoubleRange;square(Ljava/util/Optional;)Ljava/util/Optional;
      intermediary method_9044 Lnet/minecraft/class_2096$class_2099;method_9044(Ljava/util/Optional;)Ljava/util/Optional;
      official a Lde$c;a(Ljava/util/Optional;)Ljava/util/Optional;
    • exactly

      public static NumberRange.DoubleRange exactly(double value)
      Mappings:
      Namespace Name Mixin selector
      named exactly Lnet/minecraft/predicate/NumberRange$DoubleRange;exactly(D)Lnet/minecraft/predicate/NumberRange$DoubleRange;
      intermediary method_35284 Lnet/minecraft/class_2096$class_2099;method_35284(D)Lnet/minecraft/class_2096$class_2099;
      official a Lde$c;a(D)Lde$c;
    • between

      public static NumberRange.DoubleRange between(double min, double max)
      Mappings:
      Namespace Name Mixin selector
      named between Lnet/minecraft/predicate/NumberRange$DoubleRange;between(DD)Lnet/minecraft/predicate/NumberRange$DoubleRange;
      intermediary method_35285 Lnet/minecraft/class_2096$class_2099;method_35285(DD)Lnet/minecraft/class_2096$class_2099;
      official a Lde$c;a(DD)Lde$c;
    • atLeast

      public static NumberRange.DoubleRange atLeast(double value)
      Mappings:
      Namespace Name Mixin selector
      named atLeast Lnet/minecraft/predicate/NumberRange$DoubleRange;atLeast(D)Lnet/minecraft/predicate/NumberRange$DoubleRange;
      intermediary method_9050 Lnet/minecraft/class_2096$class_2099;method_9050(D)Lnet/minecraft/class_2096$class_2099;
      official b Lde$c;b(D)Lde$c;
    • atMost

      public static NumberRange.DoubleRange atMost(double value)
      Mappings:
      Namespace Name Mixin selector
      named atMost Lnet/minecraft/predicate/NumberRange$DoubleRange;atMost(D)Lnet/minecraft/predicate/NumberRange$DoubleRange;
      intermediary method_35286 Lnet/minecraft/class_2096$class_2099;method_35286(D)Lnet/minecraft/class_2096$class_2099;
      official c Lde$c;c(D)Lde$c;
    • test

      public boolean test(double value)
      Mappings:
      Namespace Name Mixin selector
      named test Lnet/minecraft/predicate/NumberRange$DoubleRange;test(D)Z
      intermediary method_9047 Lnet/minecraft/class_2096$class_2099;method_9047(D)Z
      official d Lde$c;d(D)Z
    • testSqrt

      public boolean testSqrt(double value)
      Mappings:
      Namespace Name Mixin selector
      named testSqrt Lnet/minecraft/predicate/NumberRange$DoubleRange;testSqrt(D)Z
      intermediary method_9045 Lnet/minecraft/class_2096$class_2099;method_9045(D)Z
      official e Lde$c;e(D)Z
    • parse

      public static NumberRange.DoubleRange parse(com.mojang.brigadier.StringReader reader) throws com.mojang.brigadier.exceptions.CommandSyntaxException
      Throws:
      com.mojang.brigadier.exceptions.CommandSyntaxException
      Mappings:
      Namespace Name Mixin selector
      named parse Lnet/minecraft/predicate/NumberRange$DoubleRange;parse(Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/predicate/NumberRange$DoubleRange;
      intermediary method_9049 Lnet/minecraft/class_2096$class_2099;method_9049(Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/class_2096$class_2099;
      official a Lde$c;a(Lcom/mojang/brigadier/StringReader;)Lde$c;
    • parse

      public static NumberRange.DoubleRange parse(com.mojang.brigadier.StringReader reader, Function<Double,Double> mapper) throws com.mojang.brigadier.exceptions.CommandSyntaxException
      Throws:
      com.mojang.brigadier.exceptions.CommandSyntaxException
      Mappings:
      Namespace Name Mixin selector
      named parse Lnet/minecraft/predicate/NumberRange$DoubleRange;parse(Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lnet/minecraft/predicate/NumberRange$DoubleRange;
      intermediary method_9048 Lnet/minecraft/class_2096$class_2099;method_9048(Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lnet/minecraft/class_2096$class_2099;
      official a Lde$c;a(Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lde$c;
    • 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 object)
      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:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • min

      public Optional<Double> min()
      Returns the value of the min record component.
      Specified by:
      min in interface NumberRange<Double>
      Returns:
      the value of the min record component
    • max

      public Optional<Double> max()
      Returns the value of the max record component.
      Specified by:
      max in interface NumberRange<Double>
      Returns:
      the value of the max record component
    • squaredMin

      public Optional<Double> squaredMin()
      Returns the value of the squaredMin record component.
      Returns:
      the value of the squaredMin record component
    • squaredMax

      public Optional<Double> squaredMax()
      Returns the value of the squaredMax record component.
      Returns:
      the value of the squaredMax record component