Ejemplo n.º 1
0
 @Override
 public Character deserialize(Character reuse, DataInputView source) throws IOException {
   return Character.valueOf(source.readChar());
 }
Ejemplo n.º 2
0
 @Override
 public void copy(DataInputView source, DataOutputView target) throws IOException {
   target.writeChar(source.readChar());
 }
Ejemplo n.º 3
0
 @Override
 public void read(DataInputView in) throws IOException {
   this.value = in.readChar();
 }