Class MapDataTracker<T,U>

java.lang.Object
com.ticxo.modelengine.api.utils.data.tracker.DataTracker<Map<T,U>>
com.ticxo.modelengine.api.utils.data.tracker.MapDataTracker<T,U>
All Implemented Interfaces:
Map<T,U>

public class MapDataTracker<T,U> extends DataTracker<Map<T,U>> implements Map<T,U>
  • Constructor Details

    • MapDataTracker

      public MapDataTracker(Map<T,U> value)
  • Method Details

    • size

      public int size()
      Specified by:
      size in interface Map<T,U>
    • isEmpty

      public boolean isEmpty()
      Specified by:
      isEmpty in interface Map<T,U>
    • containsKey

      public boolean containsKey(Object key)
      Specified by:
      containsKey in interface Map<T,U>
    • containsValue

      public boolean containsValue(Object value)
      Specified by:
      containsValue in interface Map<T,U>
    • get

      public U get(Object key)
      Specified by:
      get in interface Map<T,U>
    • put

      @Nullable public U put(T key, U value)
      Specified by:
      put in interface Map<T,U>
    • remove

      public U remove(Object key)
      Specified by:
      remove in interface Map<T,U>
    • putAll

      public void putAll(@NotNull @NotNull Map<? extends T,? extends U> m)
      Specified by:
      putAll in interface Map<T,U>
    • clear

      public void clear()
      Specified by:
      clear in interface Map<T,U>
    • keySet

      @NotNull public @NotNull Set<T> keySet()
      Specified by:
      keySet in interface Map<T,U>
    • values

      @NotNull public @NotNull Collection<U> values()
      Specified by:
      values in interface Map<T,U>
    • entrySet

      @NotNull public @NotNull Set<Map.Entry<T,U>> entrySet()
      Specified by:
      entrySet in interface Map<T,U>