Class EmptyMemory<T>

  • All Implemented Interfaces:
    java.lang.Iterable<T>, IMemoryView<T>

    public class EmptyMemory<T>
    extends java.lang.Object
    implements IMemoryView<T>
    A singleton immutable empty memory.
    Since:
    2.0
    • Method Detail

      • instance

        public static <T> EmptyMemory<T> instance()
      • iterator

        public java.util.Iterator<T> iterator()
        Specified by:
        iterator in interface java.lang.Iterable<T>
      • getCount

        public int getCount​(T value)
        Description copied from interface: IMemoryView
        Returns the number of occurrences of the given value.
        Specified by:
        getCount in interface IMemoryView<T>
        Returns:
        the number of occurrences
      • getCountUnsafe

        public int getCountUnsafe​(java.lang.Object value)
        Description copied from interface: IMemoryView
        Returns the number of occurrences of the given value (which may be of any type).
        Specified by:
        getCountUnsafe in interface IMemoryView<T>
        Returns:
        the number of occurrences
      • containsNonZero

        public boolean containsNonZero​(T value)
        Specified by:
        containsNonZero in interface IMemoryView<T>
        Returns:
        true if the given value is contained with a nonzero multiplicity
      • containsNonZeroUnsafe

        public boolean containsNonZeroUnsafe​(java.lang.Object value)
        Specified by:
        containsNonZeroUnsafe in interface IMemoryView<T>
        Returns:
        true if the given value (which may be of any type) is contained with a nonzero multiplicity
      • size

        public int size()
        Specified by:
        size in interface IMemoryView<T>
        Returns:
        the number of distinct values
      • isEmpty

        public boolean isEmpty()
        Specified by:
        isEmpty in interface IMemoryView<T>
        Returns:
        iff contains at least one value with non-zero occurrences
      • distinctValues

        public java.util.Set<T> distinctValues()
        Description copied from interface: IMemoryView
        The set of distinct values
        Specified by:
        distinctValues in interface IMemoryView<T>
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object