?? integertranscoder.java
字號:
// Copyright (c) 2006 Dustin Sallings <dustin@spy.net>package net.spy.memcached.transcoders;import net.spy.SpyObject;import net.spy.memcached.CachedData;/** * Transcoder that serializes and unserializes longs. */public final class IntegerTranscoder extends SpyObject implements Transcoder<Integer> { private static final int flags = SerializingTranscoder.SPECIAL_INT; private final TranscoderUtils tu=new TranscoderUtils(true); public CachedData encode(java.lang.Integer l) { return new CachedData(flags, tu.encodeInt(l)); } public Integer decode(CachedData d) { if (flags == d.getFlags()) { return tu.decodeInt(d.getData()); } else { return null; } }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -