Enum Class MessageVerifier.Status

java.lang.Object
java.lang.Enum<MessageVerifier.Status>
net.minecraft.network.message.MessageVerifier.Status
All Implemented Interfaces:
Serializable, Comparable<MessageVerifier.Status>, Constable
Enclosing interface:
MessageVerifier

public static enum MessageVerifier.Status extends Enum<MessageVerifier.Status>
The verification status of a message.
Mappings:
Namespace Name
official si$b
intermediary net/minecraft/class_7615$class_7646
named net/minecraft/network/message/MessageVerifier$Status
  • Enum Constant Details

    • SECURE

      public static final MessageVerifier.Status SECURE
      The message is verified.
      Mappings:
      Namespace Name Mixin selector
      official a Lsi$b;a:Lsi$b;
      intermediary field_39910 Lnet/minecraft/class_7615$class_7646;field_39910:Lnet/minecraft/class_7615$class_7646;
      named SECURE Lnet/minecraft/network/message/MessageVerifier$Status;SECURE:Lnet/minecraft/network/message/MessageVerifier$Status;
    • NOT_SECURE

      public static final MessageVerifier.Status NOT_SECURE
      The message cannot be verified.
      Mappings:
      Namespace Name Mixin selector
      official b Lsi$b;b:Lsi$b;
      intermediary field_39911 Lnet/minecraft/class_7615$class_7646;field_39911:Lnet/minecraft/class_7615$class_7646;
      named NOT_SECURE Lnet/minecraft/network/message/MessageVerifier$Status;NOT_SECURE:Lnet/minecraft/network/message/MessageVerifier$Status;
    • BROKEN_CHAIN

      public static final MessageVerifier.Status BROKEN_CHAIN
      The message cannot be verified due to the last message not being verified.
      Mappings:
      Namespace Name Mixin selector
      official c Lsi$b;c:Lsi$b;
      intermediary field_39912 Lnet/minecraft/class_7615$class_7646;field_39912:Lnet/minecraft/class_7615$class_7646;
      named BROKEN_CHAIN Lnet/minecraft/network/message/MessageVerifier$Status;BROKEN_CHAIN:Lnet/minecraft/network/message/MessageVerifier$Status;
  • Constructor Details

    • Status

      private Status()
  • Method Details

    • values

      public static MessageVerifier.Status[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static MessageVerifier.Status valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null