public Long create( String value ) {
if (value == null) return null;
try {
return Long.valueOf(value.trim());
} catch (NumberFormatException err) {
throw new ValueFormatException(value, getPropertyType(),
GraphI18n.errorConvertingType.text(String.class.getSimpleName(),
Long.class.getSimpleName(),
value), err);
}
}