Class ShortType

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

public class ShortType extends Type<Short> implements TypeConverter<Short>
  • Constructor Details

    • ShortType

      public ShortType()
  • Method Details

    • readPrimitive

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

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

      @Deprecated public Short 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<Short>
      Parameters:
      buffer - buffer to read from
      Returns:
      type based on the class type
    • write

      @Deprecated public void write(io.netty.buffer.ByteBuf buffer, Short object)
      Deprecated.
      use writePrimitive(ByteBuf, short) 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<Short>
      Parameters:
      buffer - buffer to write to
      object - value to write
    • from

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