Record Class ModStatus

java.lang.Object
java.lang.Record
net.minecraft.util.ModStatus
Record Components:
confidence -
description -

public record ModStatus(ModStatus.Confidence confidence, String description) extends Record
Mappings:
Namespace Name
named net/minecraft/util/ModStatus
intermediary net/minecraft/class_6683
official ayy
named confidence
intermediary comp_171
official a
named description
intermediary comp_172
official b
  • Field Details Link icon

  • Constructor Details Link icon

  • Method Details Link icon

    • check Link icon

      public static ModStatus check(String vanillaBrand, Supplier<String> brandSupplier, String environment, Class<?> clazz)
      Returns the modification status determined by the brand and whether the class is signed or not.
      Returns:
      the modification status determined by the brand and whether the class is signed or not
      Mappings:
      Namespace Name Mixin selector
      named check Lnet/minecraft/util/ModStatus;check(Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)Lnet/minecraft/util/ModStatus;
      intermediary method_39031 Lnet/minecraft/class_6683;method_39031(Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)Lnet/minecraft/class_6683;
      official a Layy;a(Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)Layy;
    • isModded Link icon

      public boolean isModded()
      Mappings:
      Namespace Name Mixin selector
      named isModded Lnet/minecraft/util/ModStatus;isModded()Z
      intermediary method_39029 Lnet/minecraft/class_6683;method_39029()Z
      official a Layy;a()Z
    • combine Link icon

      public ModStatus combine(ModStatus brand)
      Returns the combined modification status with the higher confidence.
      Returns:
      the combined modification status with the higher confidence
      API Note:
      This is used to check if either the client or the integrated server is modded.
      Mappings:
      Namespace Name Mixin selector
      named combine Lnet/minecraft/util/ModStatus;combine(Lnet/minecraft/util/ModStatus;)Lnet/minecraft/util/ModStatus;
      intermediary method_39030 Lnet/minecraft/class_6683;method_39030(Lnet/minecraft/class_6683;)Lnet/minecraft/class_6683;
      official a Layy;a(Layy;)Layy;
    • getMessage Link icon

      public String getMessage()
      Mappings:
      Namespace Name Mixin selector
      named getMessage Lnet/minecraft/util/ModStatus;getMessage()Ljava/lang/String;
      intermediary method_39032 Lnet/minecraft/class_6683;method_39032()Ljava/lang/String;
      official b Layy;b()Ljava/lang/String;
    • toString Link icon

      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 Link icon

      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 Link icon

      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.
    • confidence Link icon

      public ModStatus.Confidence confidence()
      Returns the value of the confidence record component.
      Returns:
      the value of the confidence record component
    • description Link icon

      public String description()
      Returns the value of the description record component.
      Returns:
      the value of the description record component