Package net.minecraft.client.realms
Record Class RealmsError.DetailedHttpError
java.lang.Object
java.lang.Record
net.minecraft.client.realms.RealmsError.DetailedHttpError
- Record Components:
- httpCode-
- code-
- reason-
- message-
- All Implemented Interfaces:
- RealmsError
- Enclosing interface:
- RealmsError
@Environment(CLIENT)
public static record RealmsError.DetailedHttpError(int httpCode, int code, @Nullable String reason, @Nullable String message)
extends Record
implements RealmsError
- Mappings:
- Namespace - Name - named - net/minecraft/client/realms/RealmsError$DetailedHttpError- intermediary - net/minecraft/class_4345$class_8654- official - fgn$c- named - httpCode- intermediary - comp_1598- official - c- named - code- intermediary - comp_1599- official - d- named - reason- intermediary - comp_1600- official - e- named - message- intermediary - comp_1601- official - f
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.client.realms.RealmsErrorRealmsError.AuthenticationError, RealmsError.DetailedHttpError, RealmsError.RawHttpPayloadError, RealmsError.SimpleHttpError
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final intThe field for thecoderecord component.private final intThe field for thehttpCoderecord component.The field for themessagerecord component.The field for thereasonrecord component.Fields inherited from interface net.minecraft.client.realms.RealmsErrorLOGGER, NO_DETAILS_TEXT
- 
Constructor SummaryConstructorsConstructorDescriptionDetailedHttpError(int int2, int int3, @Nullable String string, @Nullable String string2) 
- 
Method SummaryModifier and TypeMethodDescriptionintcode()Returns the value of thecoderecord component.final booleanIndicates whether some other object is "equal to" this one.intgetText()final inthashCode()Returns a hash code value for this object.inthttpCode()Returns the value of thehttpCoderecord component.message()Returns the value of themessagerecord component.reason()Returns the value of thereasonrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details- 
DetailedHttpError
 
- 
- 
Method Details- 
getErrorCodepublic int getErrorCode()- Specified by:
- getErrorCodein interface- RealmsError
- Mappings:
- Namespace - Name - Mixin selector - named - getErrorCode- Lnet/minecraft/client/realms/RealmsError;getErrorCode()I- intermediary - method_21037- Lnet/minecraft/class_4345;method_21037()I- official - a- Lfgn;a()I
 
- 
getText- Specified by:
- getTextin interface- RealmsError
- Mappings:
- Namespace - Name - Mixin selector - named - getText- Lnet/minecraft/client/realms/RealmsError;getText()Lnet/minecraft/text/Text;- intermediary - method_52657- Lnet/minecraft/class_4345;method_52657()Lnet/minecraft/class_2561;- official - b- Lfgn;b()Lwp;
 
- 
getErrorMessage- Specified by:
- getErrorMessagein interface- RealmsError
- Mappings:
- Namespace - Name - Mixin selector - named - getErrorMessage- Lnet/minecraft/client/realms/RealmsError;getErrorMessage()Ljava/lang/String;- intermediary - method_21036- Lnet/minecraft/class_4345;method_21036()Ljava/lang/String;- official - c- Lfgn;c()Ljava/lang/String;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
httpCodepublic int httpCode()Returns the value of thehttpCoderecord component.- Returns:
- the value of the httpCoderecord component
 
- 
codepublic int code()Returns the value of thecoderecord component.- Returns:
- the value of the coderecord component
 
- 
reasonReturns the value of thereasonrecord component.- Returns:
- the value of the reasonrecord component
 
- 
messageReturns the value of themessagerecord component.- Returns:
- the value of the messagerecord component
 
 
-