java.lang.Object
com.viaversion.viaversion.api.type.Type<Byte>
com.viaversion.viaversion.api.type.types.ByteType
All Implemented Interfaces:
ByteBufReader<Byte>, ByteBufWriter<Byte>, TypeConverter<Byte>

public class ByteType extends Type<Byte> implements TypeConverter<Byte>
  • Constructor Details

    • ByteType

      public ByteType()
  • Method Details

    • readPrimitive

      public byte readPrimitive(io.netty.buffer.ByteBuf buffer)
    • writePrimitive

      public void writePrimitive(io.netty.buffer.ByteBuf buffer, byte object)
    • read

      @Deprecated public Byte read(io.netty.buffer.ByteBuf buffer)
      Deprecated.
      Description copied from interface: ByteBufReader
      Reads a value from a ByteBuf.
      Specified by:
      read in interface ByteBufReader<Byte>
      Parameters:
      buffer - buffer to read from
      Returns:
      type based on the class type
    • write

      @Deprecated public void write(io.netty.buffer.ByteBuf buffer, Byte object)
      Deprecated.
      Description copied from interface: ByteBufWriter
      Writes an object to a type to a ByteBuf.
      Specified by:
      write in interface ByteBufWriter<Byte>
      Parameters:
      buffer - buffer to write to
      object - value to write
    • from

      public Byte from(Object o)
      Description copied from interface: TypeConverter
      Convert from a type to the current type
      Specified by:
      from in interface TypeConverter<Byte>
      Parameters:
      o - The input object
      Returns:
      The converted type as an object