Class UnsignedIntType

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

public class UnsignedIntType extends Type<Long> implements TypeConverter<Long>
  • Field Details

  • Constructor Details

    • UnsignedIntType

      public UnsignedIntType()
  • Method Details

    • read

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

      public long readPrimitive(io.netty.buffer.ByteBuf buffer)
    • write

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

      public void writePrimitive(io.netty.buffer.ByteBuf buffer, long l)
    • from

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