final String argStr = "" + representation.asBigInteger();
return encodableFacet.fromEncodedString(argStr);
}
if (representation.isDouble()) {
final String argStr = "" + representation.asDouble();
return encodableFacet.fromEncodedString(argStr);
}
if (representation.isLong()) {
final String argStr = "" + representation.asLong();
return encodableFacet.fromEncodedString(argStr);
}