Пример #1
0
 @Override
 public String decodeStored(String fieldName, Fieldable value) throws Exception {
   if (value.isBinary()) {
     return b.decodeStored(fieldName, value);
   }
   return decodeTerm(fieldName, value.stringValue());
 }
Пример #2
0
 public void clear() {
   d1.clearBuf();
   d2.clearBuf();
 }
Пример #3
0
 public void set(byte[] data1, int off1, int len1, byte[] data2, int off2, int len2) {
   d1.setBuf(data1, off1, len1);
   d2.setBuf(data2, off2, len2);
 }