Serializes the specified value. @param value value @return string representation @throws QueryIOException query I/O exception
(final Value value)
| 81 | * @throws QueryIOException query I/O exception |
| 82 | */ |
| 83 | protected static String serialize(final Value value) throws QueryIOException { |
| 84 | return serialize(value, new StringBuilder()).toString(); |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Serializes the specified value to the specified string builder. |