コード例 #1
0
ファイル: ShortBinding.java プロジェクト: JetBrains/xodus
 /**
  * Serializes {@code short} value to the {@linkplain ArrayByteIterable} entry.
  *
  * @param object value to serialize
  * @return {@linkplain ArrayByteIterable} entry
  */
 public static ArrayByteIterable shortToEntry(final short object) {
   return BINDING.objectToEntry(object);
 }
コード例 #2
0
ファイル: ShortBinding.java プロジェクト: JetBrains/xodus
 /**
  * De-serializes {@linkplain ByteIterable} entry to a {@code short} value.
  *
  * @param entry {@linkplain ByteIterable} instance
  * @return de-serialized value
  */
 public static short entryToShort(@NotNull final ByteIterable entry) {
   return (Short) BINDING.entryToObject(entry);
 }