(T value)
| 1005 | } |
| 1006 | |
| 1007 | @Override |
| 1008 | byte[] toBytes(T value) { |
| 1009 | return Preconditions.checkNotNull( |
| 1010 | marshaller.toAsciiString(value), "null marshaller.toAsciiString()"); |
| 1011 | } |
| 1012 | |
| 1013 | @Override |
| 1014 | T parseBytes(byte[] serialized) { |
nothing calls this directly
no test coverage detected