Class TFloatSetDecorator

  • All Implemented Interfaces:
    java.io.Externalizable, java.io.Serializable, java.lang.Iterable<java.lang.Float>, java.util.Collection<java.lang.Float>, java.util.Set<java.lang.Float>

    public class TFloatSetDecorator
    extends java.util.AbstractSet<java.lang.Float>
    implements java.util.Set<java.lang.Float>, java.io.Externalizable
    Wrapper class to make a TFloatSet conform to the java.util.Set API. This class simply decorates an underlying TFloatSet and translates the Object-based APIs into their Trove primitive analogs.

    Note that wrapping and unwrapping primitive values is extremely inefficient. If possible, users of this class should override the appropriate methods in this class and use a table of canonical values.

    Created: Tue Sep 24 22:08:17 PDT 2002

    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected TFloatSet _set
      the wrapped primitive set
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean add​(java.lang.Float value)
      Inserts a value into the set.
      void clear()
      Empties the set.
      boolean contains​(java.lang.Object o)
      boolean equals​(java.lang.Object other)
      Compares this set with another set for equality of their stored entries.
      TFloatSet getSet()
      Returns a reference to the set wrapped by this decorator.
      boolean isEmpty()
      Indicates whether set has any entries.
      java.util.Iterator<java.lang.Float> iterator()
      Creates an iterator over the values of the set.
      void readExternal​(java.io.ObjectInput in)  
      boolean remove​(java.lang.Object value)
      Deletes a value from the set.
      int size()
      Returns the number of entries in the set.
      void writeExternal​(java.io.ObjectOutput out)  
      • Methods inherited from class java.util.AbstractSet

        hashCode, removeAll
      • Methods inherited from class java.util.AbstractCollection

        addAll, containsAll, retainAll, toArray, toArray, toString
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, removeIf, stream, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
      • Methods inherited from interface java.util.Set

        addAll, containsAll, hashCode, removeAll, retainAll, spliterator, toArray, toArray
    • Field Detail

      • _set

        protected TFloatSet _set
        the wrapped primitive set
    • Constructor Detail

      • TFloatSetDecorator

        public TFloatSetDecorator()
        FOR EXTERNALIZATION ONLY!!
      • TFloatSetDecorator

        public TFloatSetDecorator​(TFloatSet set)
        Creates a wrapper that decorates the specified primitive set.
        Parameters:
        set - the TFloatSet to wrap.
    • Method Detail

      • getSet

        public TFloatSet getSet()
        Returns a reference to the set wrapped by this decorator.
        Returns:
        the wrapped TFloatSet instance.
      • add

        public boolean add​(java.lang.Float value)
        Inserts a value into the set.
        Specified by:
        add in interface java.util.Collection<java.lang.Float>
        Specified by:
        add in interface java.util.Set<java.lang.Float>
        Overrides:
        add in class java.util.AbstractCollection<java.lang.Float>
        Parameters:
        value - true if the set was modified by the insertion
      • equals

        public boolean equals​(java.lang.Object other)
        Compares this set with another set for equality of their stored entries.
        Specified by:
        equals in interface java.util.Collection<java.lang.Float>
        Specified by:
        equals in interface java.util.Set<java.lang.Float>
        Overrides:
        equals in class java.util.AbstractSet<java.lang.Float>
        Parameters:
        other - an Object value
        Returns:
        true if the sets are identical
      • clear

        public void clear()
        Empties the set.
        Specified by:
        clear in interface java.util.Collection<java.lang.Float>
        Specified by:
        clear in interface java.util.Set<java.lang.Float>
        Overrides:
        clear in class java.util.AbstractCollection<java.lang.Float>
      • remove

        public boolean remove​(java.lang.Object value)
        Deletes a value from the set.
        Specified by:
        remove in interface java.util.Collection<java.lang.Float>
        Specified by:
        remove in interface java.util.Set<java.lang.Float>
        Overrides:
        remove in class java.util.AbstractCollection<java.lang.Float>
        Parameters:
        value - an Object value
        Returns:
        true if the set was modified
      • iterator

        public java.util.Iterator<java.lang.Float> iterator()
        Creates an iterator over the values of the set.
        Specified by:
        iterator in interface java.util.Collection<java.lang.Float>
        Specified by:
        iterator in interface java.lang.Iterable<java.lang.Float>
        Specified by:
        iterator in interface java.util.Set<java.lang.Float>
        Specified by:
        iterator in class java.util.AbstractCollection<java.lang.Float>
        Returns:
        an iterator with support for removals in the underlying set
      • size

        public int size()
        Returns the number of entries in the set.
        Specified by:
        size in interface java.util.Collection<java.lang.Float>
        Specified by:
        size in interface java.util.Set<java.lang.Float>
        Specified by:
        size in class java.util.AbstractCollection<java.lang.Float>
        Returns:
        the set's size.
      • isEmpty

        public boolean isEmpty()
        Indicates whether set has any entries.
        Specified by:
        isEmpty in interface java.util.Collection<java.lang.Float>
        Specified by:
        isEmpty in interface java.util.Set<java.lang.Float>
        Overrides:
        isEmpty in class java.util.AbstractCollection<java.lang.Float>
        Returns:
        true if the set is empty
      • contains

        public boolean contains​(java.lang.Object o)
        Specified by:
        contains in interface java.util.Collection<java.lang.Float>
        Specified by:
        contains in interface java.util.Set<java.lang.Float>
        Overrides:
        contains in class java.util.AbstractCollection<java.lang.Float>
      • readExternal

        public void readExternal​(java.io.ObjectInput in)
                          throws java.io.IOException,
                                 java.lang.ClassNotFoundException
        Specified by:
        readExternal in interface java.io.Externalizable
        Throws:
        java.io.IOException
        java.lang.ClassNotFoundException
      • writeExternal

        public void writeExternal​(java.io.ObjectOutput out)
                           throws java.io.IOException
        Specified by:
        writeExternal in interface java.io.Externalizable
        Throws:
        java.io.IOException