Record Class ProfileComponent

java.lang.Object
java.lang.Record
net.minecraft.component.type.ProfileComponent
Record Components:
name -
id -
properties -
gameProfile -

public record ProfileComponent(Optional<String> name, Optional<UUID> id, com.mojang.authlib.properties.PropertyMap properties, com.mojang.authlib.GameProfile gameProfile) extends Record
Mappings:
Namespace Name
named net/minecraft/component/type/ProfileComponent
intermediary net/minecraft/class_9296
official cxt
named name
intermediary comp_2410
official c
named id
intermediary comp_2411
official d
named properties
intermediary comp_2412
official e
named gameProfile
intermediary comp_2413
official f
  • Field Details

    • name

      private final Optional<String> name
      The field for the name record component.
    • id

      private final Optional<UUID> id
      The field for the id record component.
    • properties

      private final com.mojang.authlib.properties.PropertyMap properties
      The field for the properties record component.
    • gameProfile

      private final com.mojang.authlib.GameProfile gameProfile
      The field for the gameProfile record component.
    • BASE_CODEC

      private static final com.mojang.serialization.Codec<ProfileComponent> BASE_CODEC
      Mappings:
      Namespace Name Mixin selector
      named BASE_CODEC Lnet/minecraft/component/type/ProfileComponent;BASE_CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_49752 Lnet/minecraft/class_9296;field_49752:Lcom/mojang/serialization/Codec;
      official g Lcxt;g:Lcom/mojang/serialization/Codec;
    • CODEC

      public static final com.mojang.serialization.Codec<ProfileComponent> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/component/type/ProfileComponent;CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_49359 Lnet/minecraft/class_9296;field_49359:Lcom/mojang/serialization/Codec;
      official a Lcxt;a:Lcom/mojang/serialization/Codec;
    • PACKET_CODEC

      public static final PacketCodec<ByteBuf,ProfileComponent> PACKET_CODEC
      Mappings:
      Namespace Name Mixin selector
      named PACKET_CODEC Lnet/minecraft/component/type/ProfileComponent;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;
      intermediary field_49360 Lnet/minecraft/class_9296;field_49360:Lnet/minecraft/class_9139;
      official b Lcxt;b:Lzn;
  • Constructor Details

    • ProfileComponent

      public ProfileComponent(Optional<String> name, Optional<UUID> id, com.mojang.authlib.properties.PropertyMap properties)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/component/type/ProfileComponent;<init>(Ljava/util/Optional;Ljava/util/Optional;Lcom/mojang/authlib/properties/PropertyMap;)V
      intermediary <init> Lnet/minecraft/class_9296;<init>(Ljava/util/Optional;Ljava/util/Optional;Lcom/mojang/authlib/properties/PropertyMap;)V
      official <init> Lcxt;<init>(Ljava/util/Optional;Ljava/util/Optional;Lcom/mojang/authlib/properties/PropertyMap;)V
    • ProfileComponent

      public ProfileComponent(com.mojang.authlib.GameProfile gameProfile)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/component/type/ProfileComponent;<init>(Lcom/mojang/authlib/GameProfile;)V
      intermediary <init> Lnet/minecraft/class_9296;<init>(Lcom/mojang/authlib/GameProfile;)V
      official <init> Lcxt;<init>(Lcom/mojang/authlib/GameProfile;)V
    • ProfileComponent

      public ProfileComponent(Optional<String> optional, Optional<UUID> optional2, com.mojang.authlib.properties.PropertyMap propertyMap, com.mojang.authlib.GameProfile gameProfile)
  • Method Details

    • getFuture

      public CompletableFuture<ProfileComponent> getFuture()
      Mappings:
      Namespace Name Mixin selector
      named getFuture Lnet/minecraft/component/type/ProfileComponent;getFuture()Ljava/util/concurrent/CompletableFuture;
      intermediary method_57507 Lnet/minecraft/class_9296;method_57507()Ljava/util/concurrent/CompletableFuture;
      official a Lcxt;a()Ljava/util/concurrent/CompletableFuture;
    • createProfile

      private static com.mojang.authlib.GameProfile createProfile(Optional<String> name, Optional<UUID> id, com.mojang.authlib.properties.PropertyMap properties)
      Mappings:
      Namespace Name Mixin selector
      named createProfile Lnet/minecraft/component/type/ProfileComponent;createProfile(Ljava/util/Optional;Ljava/util/Optional;Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/authlib/GameProfile;
      intermediary method_57509 Lnet/minecraft/class_9296;method_57509(Ljava/util/Optional;Ljava/util/Optional;Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/authlib/GameProfile;
      official a Lcxt;a(Ljava/util/Optional;Ljava/util/Optional;Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/authlib/GameProfile;
    • isCompleted

      public boolean isCompleted()
      Mappings:
      Namespace Name Mixin selector
      named isCompleted Lnet/minecraft/component/type/ProfileComponent;isCompleted()Z
      intermediary method_57511 Lnet/minecraft/class_9296;method_57511()Z
      official b Lcxt;b()Z
    • 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.
    • name

      public Optional<String> name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • id

      public Optional<UUID> id()
      Returns the value of the id record component.
      Returns:
      the value of the id record component
    • properties

      public com.mojang.authlib.properties.PropertyMap properties()
      Returns the value of the properties record component.
      Returns:
      the value of the properties record component
    • gameProfile

      public com.mojang.authlib.GameProfile gameProfile()
      Returns the value of the gameProfile record component.
      Returns:
      the value of the gameProfile record component