| Package | Description |
|---|---|
| org.infinispan.commons.util |
Commons package providing various utility classes
|
| Modifier and Type | Class and Description |
|---|---|
class |
ImmutableIntSet
Immutable wrapper for
IntSet. |
class |
RangeSet
Read-only set representing all the integers from
0 to size - 1 (inclusive). |
class |
SmallIntSet
Represent a set of integers (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
SmallIntSet.addAll(IntSet set) |
boolean |
RangeSet.addAll(IntSet set) |
boolean |
IntSet.addAll(IntSet set)
Adds all ints from the provided set into this one
|
boolean |
ImmutableIntSet.addAll(IntSet set) |
boolean |
SmallIntSet.containsAll(IntSet set) |
boolean |
RangeSet.containsAll(IntSet set) |
boolean |
IntSet.containsAll(IntSet set)
Whether this set contains all ints in the given IntSet
|
boolean |
ImmutableIntSet.containsAll(IntSet set) |
boolean |
SmallIntSet.removeAll(IntSet set) |
boolean |
RangeSet.removeAll(IntSet set) |
boolean |
IntSet.removeAll(IntSet set)
Removes all ints from this IntSet that are in the provided IntSet
|
boolean |
ImmutableIntSet.removeAll(IntSet set) |
boolean |
SmallIntSet.retainAll(IntSet c) |
boolean |
RangeSet.retainAll(IntSet c) |
boolean |
IntSet.retainAll(IntSet c)
Modifies this set to only remove all ints that are not present in the provided IntSet
|
boolean |
ImmutableIntSet.retainAll(IntSet c) |
| Constructor and Description |
|---|
ImmutableIntSet(IntSet set) |
Copyright © 2018 JBoss, a division of Red Hat. All rights reserved.