Class | Description |
---|---|
ElementParser<E> |
A parser for the elements of a set in a string representation.
|
Matrix<T> |
Represents the base of a matrix of a specific type of objects.
|
NumericMatrix<T extends java.lang.Number> |
Represents a numeric matrix.
|
ObjectMatrix<T> |
Represents an object matrix.
|
Set<E> |
Represents a mathematical set of elements which means it is not permissible that the set of elements contains:
a null element
itself
an element twice
Set operations:
Set.union(Set, Set) /Set.union(Collection) /Set.union(Set[])
Set.intersection(Set, Set) /Set.intersection(Collection) /Set.intersection(Set[])
Set.complement(Set, Set)
Set.symDifference(Set, Set)
The internal data structure of the set is based on an ArrayList . |
Set.DoubleElementParser |
A default parser for double elements.
|
Set.FloatElementParser |
A default parser for float elements.
|
Set.IntegerElementParser |
A default parser for integer elements.
|
Set.LongElementParser |
A default parser for long elements.
|
Set.NumberElementParser |
A default parser for number elements.
|
Set.StringElementParser |
A default parser for string elements.
|