Package 

Class MessagePack.Code


  • 
    public final class MessagePack.Code
    
                        

    The prefix code set of MessagePack format. See also https://github.com/msgpack/msgpack/blob/master/spec.md for details.

    • Field Summary

      Fields 
      Modifier and Type Field Description
      public final static byte POSFIXINT_MASK
      public final static byte FIXMAP_PREFIX
      public final static byte FIXARRAY_PREFIX
      public final static byte FIXSTR_PREFIX
      public final static byte NIL
      public final static byte NEVER_USED
      public final static byte FALSE
      public final static byte TRUE
      public final static byte BIN8
      public final static byte BIN16
      public final static byte BIN32
      public final static byte EXT8
      public final static byte EXT16
      public final static byte EXT32
      public final static byte FLOAT32
      public final static byte FLOAT64
      public final static byte UINT8
      public final static byte UINT16
      public final static byte UINT32
      public final static byte UINT64
      public final static byte INT8
      public final static byte INT16
      public final static byte INT32
      public final static byte INT64
      public final static byte FIXEXT1
      public final static byte FIXEXT2
      public final static byte FIXEXT4
      public final static byte FIXEXT8
      public final static byte FIXEXT16
      public final static byte STR8
      public final static byte STR16
      public final static byte STR32
      public final static byte ARRAY16
      public final static byte ARRAY32
      public final static byte MAP16
      public final static byte MAP32
      public final static byte NEGFIXINT_PREFIX
    • Method Summary

      Modifier and Type Method Description
      final static boolean isFixInt(byte b)
      final static boolean isPosFixInt(byte b)
      final static boolean isNegFixInt(byte b)
      final static boolean isFixStr(byte b)
      final static boolean isFixedArray(byte b)
      final static boolean isFixedMap(byte b)
      final static boolean isFixedRaw(byte b)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait