@SuppressWarnings("static-method")
public Long toLong(@SuppressWarnings("unused") MyObjectClass obj) {
try {
return Long.valueOf(null);
} catch (NumberFormatException ex) {
throw new ConversionFailedException("Long conversion failed", ex); //$NON-NLS-1$
}
}