-
- All Implemented Interfaces:
public final class NullableFieldUpdate<T extends Object>This data class is used when creating update objects with nullable fields allowing us to A) not include the field in an update B) update the nullable field to a value C) update the nullable field back to null
where the original field is of type :T?, the update object field type would be :NullableFieldUpdate<T>? TODO WIP, needs example and tests
-
-
Constructor Summary
Constructors Constructor Description NullableFieldUpdate(T t)
-