Package | Description |
---|---|
eu.bandm.tools.util |
Collection of mostly unrelated, tiny, ubiquitously needed
auxiliary classes for many different purposes.
|
Modifier and Type | Class and Description |
---|---|
static class |
Operators.AbstractBinRel<X>
Deprecated.
|
static class |
Operators.AbstractEquivalence<X>
Deprecated.
|
static class |
Operators.AbstractPartialOrder<X>
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static <X> Operators.BinRel<X> |
Operators.allBinRel()
Deprecated.
|
static <X,Y> Operators.BinRel<X> |
Operators.compose(Operators.Fun<? super X,? extends Y> f,
Operators.BinRel<Y> g)
Deprecated.
|
static <X> Operators.BinRel<X> |
Operators.equalsRel()
Deprecated.
|
static <X extends Comparable<? super X>> |
Operators.greaterOrEqual()
Deprecated.
Return the relation
>= , according to the natural
order on the domain type. |
static <X> Operators.BinRel<X> |
Operators.greaterOrEqual(Comparator<? super X> ord)
Deprecated.
Return the relation
>= , according to the order on
the domain type defined by a given comparator. |
static <X extends Comparable<? super X>> |
Operators.greaterThan()
Deprecated.
Return the relation
> , according to the natural
order on the domain type. |
static <X> Operators.BinRel<X> |
Operators.greaterThan(Comparator<? super X> ord)
Deprecated.
Return the relation
> , according to the order on
the domain type defined by a given comparator. |
static <X> Operators.BinRel<X> |
Operators.kernel(Operators.Fun<X,?> f)
Deprecated.
Return a binary relation that holds for elements with equal
images under a given function.
|
static <X extends Comparable<? super X>> |
Operators.lessOrEqual()
Deprecated.
Return the relation
<= , according to the natural
order on the domain type. |
static <X> Operators.BinRel<X> |
Operators.lessOrEqual(Comparator<? super X> ord)
Deprecated.
Return the relation
<= , according to the order on
the domain type defined by a given comparator. |
static <X extends Comparable<? super X>> |
Operators.lessThan()
Deprecated.
Return the relation
< , according to the natural
order on the domain type. |
static <X> Operators.BinRel<X> |
Operators.lessThan(Comparator<? super X> ord)
Deprecated.
Return the relation
< , according to the order on
the domain type defined by a given comparator. |
static <X> Operators.BinRel<X> |
Operators.not(Operators.BinRel<? super X> f)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static <X> Operators.Test<Set<X>> |
Operators.allPairs(Operators.BinRel<? super X> rel)
Deprecated.
|
static <X> boolean |
Operators.allPairs(Operators.BinRel<? super X> rel,
Set<X> elems)
Deprecated.
|
static <X> Operators.Test<Set<X>> |
Operators.anyPair(Operators.BinRel<? super X> rel)
Deprecated.
|
static <X> Operators.Test<Collection<X>> |
Operators.chain(Operators.BinRel<? super X> rel)
Deprecated.
|
static <X,Y> Operators.BinRel<X> |
Operators.compose(Operators.Fun<? super X,? extends Y> f,
Operators.BinRel<Y> g)
Deprecated.
|
static <X> Operators.BinRel<X> |
Operators.not(Operators.BinRel<? super X> f)
Deprecated.
|
Constructor and Description |
---|
AbstractBinRel(Operators.BinRel<?> prototype) |
see also the complete user documentation .