8182838485868788
@Override public Token nextToken() { try { return convertToken(parser.nextToken()); } catch (IOException ex) { throw new EsHadoopSerializationException(ex); } }
115116117118119120121
case VALUE_EMBEDDED_OBJECT: return Token.VALUE_EMBEDDED_OBJECT; case NOT_AVAILABLE: throw new UnsupportedOperationException(); } throw new EsHadoopSerializationException("No matching token for json_token [" + token + "]"); }
123124125126127128129130
@Override public void skipChildren() { try { parser.skipChildren(); } catch (IOException ex) { throw new EsHadoopSerializationException(ex); } }
132133134135136137138139
@Override public String currentName() { try { return parser.getCurrentName(); } catch (IOException ex) { throw new EsHadoopSerializationException(ex); } }
142143144145146147148149
@Override public String text() { try { return parser.getText(); } catch (IOException ex) { throw new EsHadoopSerializationException(ex); } }
156157158159160161162163
@Override public Number numberValue() { try { return parser.getNumberValue(); } catch (IOException ex) { throw new EsHadoopSerializationException(ex); } }
165166167168169170171172
@Override public NumberType numberType() { try { return convertNumberType(parser.getNumberType()); } catch (IOException ex) { throw new EsHadoopSerializationException(ex); } }
174175176177178179180181
@Override public short shortValue() { try { return parser.getShortValue(); } catch (IOException ex) { throw new EsHadoopSerializationException(ex); } }
183184185186187188189190
@Override public int intValue() { try { return parser.getIntValue(); } catch (IOException ex) { throw new EsHadoopSerializationException(ex); } }
192193194195196197198199
@Override public long longValue() { try { return parser.getLongValue(); } catch (IOException ex) { throw new EsHadoopSerializationException(ex); } }