Package 

Class NullableFieldUpdate

  • 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

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private final T t
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final T getT()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • NullableFieldUpdate

        NullableFieldUpdate(T t)
    • Method Detail