Class TypedValue<T>

java.lang.Object
ch.tocco.nice2.types.api.TypedValue<T>

public final class TypedValue<T> extends Object
This class does not make defensive copies, changes to the "value" object write through!
  • Constructor Details Link icon

    • TypedValue Link icon

      public TypedValue(Type<T> type, @Nullable T value)
      Parameters:
      value - This class continues using the real thing, not a defensive copy, so changes write through!
  • Method Details Link icon

    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object
    • equals Link icon

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode Link icon

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getType Link icon

      public Type<T> getType()
    • getValue Link icon

      @Nullable public T getValue()
      Returns:
      The real thing, not a defensive copy, so changes write through!