org.ojalgo.function.logical.set
Class Intersection<T>

java.lang.Object
  extended by org.ojalgo.function.logical.set.Intersection<T>
All Implemented Interfaces:
Iterable<T>, Collection<T>, Set<T>

Deprecated. v28 If you use/need this class let me know; or it will be removed.

@Deprecated
public class Intersection<T>
extends Object
implements Set<T>


Constructor Summary
Intersection(Set<T> aLeft, Set<T> aRight)
          Deprecated.  
 
Method Summary
 boolean add(T someO)
          Deprecated.  
 boolean addAll(Collection<? extends T> someC)
          Deprecated.  
 void clear()
          Deprecated.  
 boolean contains(Object someO)
          Deprecated.  
 boolean containsAll(Collection<?> someC)
          Deprecated.  
 boolean isEmpty()
          Deprecated.  
 Iterator<T> iterator()
          Deprecated.  
static
<O> Set<O>
make(Set<O> aLeft, Set<O> aRight)
          Deprecated.  
 boolean remove(Object someO)
          Deprecated.  
 boolean removeAll(Collection<?> someC)
          Deprecated.  
 boolean retainAll(Collection<?> someC)
          Deprecated.  
 int size()
          Deprecated.  
 Object[] toArray()
          Deprecated.  
<O> O[]
toArray(O[] someA)
          Deprecated.  
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Set
equals, hashCode
 

Constructor Detail

Intersection

public Intersection(Set<T> aLeft,
                    Set<T> aRight)
Deprecated. 
Method Detail

make

public static final <O> Set<O> make(Set<O> aLeft,
                                    Set<O> aRight)
Deprecated. 

add

public boolean add(T someO)
Deprecated. 
Specified by:
add in interface Collection<T>
Specified by:
add in interface Set<T>

addAll

public boolean addAll(Collection<? extends T> someC)
Deprecated. 
Specified by:
addAll in interface Collection<T>
Specified by:
addAll in interface Set<T>

clear

public void clear()
Deprecated. 
Specified by:
clear in interface Collection<T>
Specified by:
clear in interface Set<T>

contains

public boolean contains(Object someO)
Deprecated. 
Specified by:
contains in interface Collection<T>
Specified by:
contains in interface Set<T>

containsAll

public boolean containsAll(Collection<?> someC)
Deprecated. 
Specified by:
containsAll in interface Collection<T>
Specified by:
containsAll in interface Set<T>

isEmpty

public boolean isEmpty()
Deprecated. 
Specified by:
isEmpty in interface Collection<T>
Specified by:
isEmpty in interface Set<T>

iterator

public Iterator<T> iterator()
Deprecated. 
Specified by:
iterator in interface Iterable<T>
Specified by:
iterator in interface Collection<T>
Specified by:
iterator in interface Set<T>

remove

public boolean remove(Object someO)
Deprecated. 
Specified by:
remove in interface Collection<T>
Specified by:
remove in interface Set<T>

removeAll

public boolean removeAll(Collection<?> someC)
Deprecated. 
Specified by:
removeAll in interface Collection<T>
Specified by:
removeAll in interface Set<T>

retainAll

public boolean retainAll(Collection<?> someC)
Deprecated. 
Specified by:
retainAll in interface Collection<T>
Specified by:
retainAll in interface Set<T>

size

public int size()
Deprecated. 
Specified by:
size in interface Collection<T>
Specified by:
size in interface Set<T>

toArray

public Object[] toArray()
Deprecated. 
Specified by:
toArray in interface Collection<T>
Specified by:
toArray in interface Set<T>

toArray

public <O> O[] toArray(O[] someA)
Deprecated. 
Specified by:
toArray in interface Collection<T>
Specified by:
toArray in interface Set<T>