Package org.infinispan.multimap.impl
Class Bucket<V>
- java.lang.Object
-
- org.infinispan.multimap.impl.Bucket<V>
-
@ProtoTypeId(5300) public class Bucket<V> extends Object
Bucket used to store MultiMap values, required as HashSet cannot be directly marshalled via ProtoStream.- Since:
- 10.0
- Author:
- Ryan Emerson
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Bucket<V>add(V value, boolean supportsDuplicates)booleancontains(V value)booleanisEmpty()Bucket<V>remove(V value, boolean supportsDuplicates)Bucket<V>removeIf(Predicate<? super V> p)intsize()List<V>toList()Set<V>toSet()StringtoString()
-
-
-
Constructor Detail
-
Bucket
public Bucket()
-
Bucket
public Bucket(V value)
-
-