Package net.minecraft.client.realms
Record Class RealmsError.SimpleHttpError
java.lang.Object
java.lang.Record
net.minecraft.client.realms.RealmsError.SimpleHttpError
- Record Components:
httpCode-payload-
- All Implemented Interfaces:
RealmsError
- Enclosing interface:
RealmsError
@Environment(CLIENT)
public static record RealmsError.SimpleHttpError(int httpCode, @Nullable Text payload)
extends Record
implements RealmsError
- Mappings:
Namespace Name official elz$bintermediary net/minecraft/class_4345$class_8653named net/minecraft/client/realms/RealmsError$SimpleHttpErrorofficial eintermediary comp_1596named httpCodeofficial fintermediary comp_1597named payload
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.client.realms.RealmsError
RealmsError.AuthenticationError, RealmsError.DetailedHttpError, RealmsError.RawHttpPayloadError, RealmsError.SimpleHttpError -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for thehttpCoderecord component.The field for thepayloadrecord component.static final Textstatic final RealmsError.SimpleHttpErrorFields inherited from interface net.minecraft.client.realms.RealmsError
LOGGER, NO_DETAILS_TEXT -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic RealmsError.SimpleHttpErrorconnectivity(RealmsHttpException exception) 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.payload()Returns the value of thepayloadrecord component.static RealmsError.SimpleHttpErrorretryable(int statusCode) static RealmsError.SimpleHttpErrorstatusCodeOnly(int statusCode) final StringtoString()Returns a string representation of this record class.static RealmsError.SimpleHttpErrorunknownCompatibility(String response)
-
Field Details
-
httpCode
private final int httpCodeThe field for thehttpCoderecord component. -
payload
The field for thepayloadrecord component. -
SERVICE_BUSY
- Mappings:
Namespace Name Mixin selector official cLelz$b;c:Lelz$b;intermediary field_45235Lnet/minecraft/class_4345$class_8653;field_45235:Lnet/minecraft/class_4345$class_8653;named SERVICE_BUSYLnet/minecraft/client/realms/RealmsError$SimpleHttpError;SERVICE_BUSY:Lnet/minecraft/client/realms/RealmsError$SimpleHttpError;
-
RETRY_TEXT
- Mappings:
Namespace Name Mixin selector official dLelz$b;d:Lte;intermediary field_45236Lnet/minecraft/class_4345$class_8653;field_45236:Lnet/minecraft/class_2561;named RETRY_TEXTLnet/minecraft/client/realms/RealmsError$SimpleHttpError;RETRY_TEXT:Lnet/minecraft/text/Text;
-
-
Constructor Details
-
SimpleHttpError
-
-
Method Details
-
unknownCompatibility
- Mappings:
Namespace Name Mixin selector official aLelz$b;a(Ljava/lang/String;)Lelz$b;intermediary method_52660Lnet/minecraft/class_4345$class_8653;method_52660(Ljava/lang/String;)Lnet/minecraft/class_4345$class_8653;named unknownCompatibilityLnet/minecraft/client/realms/RealmsError$SimpleHttpError;unknownCompatibility(Ljava/lang/String;)Lnet/minecraft/client/realms/RealmsError$SimpleHttpError;
-
connectivity
- Mappings:
Namespace Name Mixin selector official aLelz$b;a(Lenj;)Lelz$b;intermediary method_52659Lnet/minecraft/class_4345$class_8653;method_52659(Lnet/minecraft/class_4354;)Lnet/minecraft/class_4345$class_8653;named connectivityLnet/minecraft/client/realms/RealmsError$SimpleHttpError;connectivity(Lnet/minecraft/client/realms/exception/RealmsHttpException;)Lnet/minecraft/client/realms/RealmsError$SimpleHttpError;
-
retryable
- Mappings:
Namespace Name Mixin selector official aLelz$b;a(I)Lelz$b;intermediary method_52658Lnet/minecraft/class_4345$class_8653;method_52658(I)Lnet/minecraft/class_4345$class_8653;named retryableLnet/minecraft/client/realms/RealmsError$SimpleHttpError;retryable(I)Lnet/minecraft/client/realms/RealmsError$SimpleHttpError;
-
statusCodeOnly
- Mappings:
Namespace Name Mixin selector official bLelz$b;b(I)Lelz$b;intermediary method_52661Lnet/minecraft/class_4345$class_8653;method_52661(I)Lnet/minecraft/class_4345$class_8653;named statusCodeOnlyLnet/minecraft/client/realms/RealmsError$SimpleHttpError;statusCodeOnly(I)Lnet/minecraft/client/realms/RealmsError$SimpleHttpError;
-
getErrorCode
public int getErrorCode()- Specified by:
getErrorCodein interfaceRealmsError- Mappings:
Namespace Name Mixin selector official aLelz;a()Iintermediary method_21037Lnet/minecraft/class_4345;method_21037()Inamed getErrorCodeLnet/minecraft/client/realms/RealmsError;getErrorCode()I
-
getText
- Specified by:
getTextin interfaceRealmsError- Mappings:
Namespace Name Mixin selector official bLelz;b()Lte;intermediary method_52657Lnet/minecraft/class_4345;method_52657()Lnet/minecraft/class_2561;named getTextLnet/minecraft/client/realms/RealmsError;getText()Lnet/minecraft/text/Text;
-
getErrorMessage
- Specified by:
getErrorMessagein interfaceRealmsError- Mappings:
Namespace Name Mixin selector official cLelz;c()Ljava/lang/String;intermediary method_21036Lnet/minecraft/class_4345;method_21036()Ljava/lang/String;named getErrorMessageLnet/minecraft/client/realms/RealmsError;getErrorMessage()Ljava/lang/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. -
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. -
equals
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
httpCode
public int httpCode()Returns the value of thehttpCoderecord component.- Returns:
- the value of the
httpCoderecord component
-
payload
Returns the value of thepayloadrecord component.- Returns:
- the value of the
payloadrecord component
-