@Override
public ClientValue stringToValue() throws RepositoryException {
String s = value.toString();
try {
LLValue sv = LLValue.crack(
new LLInputStream(
new PushbackInputStream(
new ByteArrayInputStream(s.getBytes(Charsets.UTF_8))),
"UTF-8"));
if (LOGGER.isLoggable(Level.FINEST))
LOGGER.finest("Converted: " + s + " to: " + sv);