260261262263264265266
public Boolean parse(String value) { return Boolean.valueOf(value); } public Boolean parseDateTime(long systemTimeMillis) { throw new TextException("Not Supported"); }
3637383940414243
@Override public URL parse(String value) { try { return new URL(value); } catch (MalformedURLException e) { throw new TextException(e); } }
65666768697071
return Integer.valueOf(value); } @Override public Integer parseDateTime(long systemTimeMillis) { throw new TextException("Not Supported"); }
55565758596061
ctx.readBinaryValue(out); return out.toByteArray(); } public String formatValue(byte[] t) { throw new TextException("Not supported"); }
59606162636465
public String formatValue(byte[] t) { throw new TextException("Not supported"); } public byte[] parse(String value) { throw new TextException("Not supported"); }
63646566676869
public byte[] parse(String value) { throw new TextException("Not supported"); } public byte[] parseDateTime(long systemTimeMillis) { throw new TextException("Not supported"); }
7273747576777879
@Override public String formatValue(Map v) { try { return EJson.write(v); } catch (IOException e) { throw new TextException(e); } }
8182838485868788
@Override public Map parse(String value) { try { return EJson.parseObject(value); } catch (IOException e) { throw new TextException(e); } }
221222223224225226227
return Enum.valueOf(enumType, value); } @Override public Object parseDateTime(long systemTimeMillis) { throw new TextException("Not Supported"); }