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

public class LongType extends Type<Long> implements TypeConverter<Long>
  • Constructor Details

    • LongType

      public LongType()
  • Method Details

    • read

      @Deprecated public Long read(io.netty.buffer.ByteBuf buffer)
      Deprecated.
      use readPrimitive(ByteBuf) for manual reading to avoid wrapping
      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
    • write

      @Deprecated public void write(io.netty.buffer.ByteBuf buffer, Long object)
      Deprecated.
      use readPrimitive(ByteBuf) for manual reading to avoid wrapping
      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
      object - value to write
    • 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
    • readPrimitive

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

      public void writePrimitive(io.netty.buffer.ByteBuf buffer, long object)