Class GoogleMultisetFactory
- java.lang.Object
-
- org.processmining.poemsconformancecheckingforbpmn.models.utils.multiset.impl.google.factory.GoogleMultisetFactory
-
- All Implemented Interfaces:
MultisetFactory
public class GoogleMultisetFactory extends java.lang.Object implements MultisetFactory
-
-
Constructor Summary
Constructors Constructor Description GoogleMultisetFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <E> Multiset<E>adapt(com.google.common.collect.Multiset<E> mSet)<E> com.google.common.collect.Multiset<E>adapt(Multiset<E> mSet)<E> Multiset<E>getDefault()<E> Multiset<E>getDefault(java.lang.Iterable<E> elements)<E> Multiset<E>getFifo()<E> Multiset<E>getFifo(java.lang.Iterable<E> elements)<E> Multiset<E>getHashed()<E> Multiset<E>getHashed(java.lang.Iterable<E> elements)<E> Multiset<E>getOrdered()
-
-
-
Method Detail
-
getHashed
public <E> Multiset<E> getHashed()
- Specified by:
getHashedin interfaceMultisetFactory
-
getOrdered
public <E> Multiset<E> getOrdered()
-
getDefault
public <E> Multiset<E> getDefault()
- Specified by:
getDefaultin interfaceMultisetFactory
-
getFifo
public <E> Multiset<E> getFifo()
- Specified by:
getFifoin interfaceMultisetFactory
-
getDefault
public <E> Multiset<E> getDefault(java.lang.Iterable<E> elements)
- Specified by:
getDefaultin interfaceMultisetFactory
-
getHashed
public <E> Multiset<E> getHashed(java.lang.Iterable<E> elements)
- Specified by:
getHashedin interfaceMultisetFactory
-
getFifo
public <E> Multiset<E> getFifo(java.lang.Iterable<E> elements)
- Specified by:
getFifoin interfaceMultisetFactory
-
adapt
public <E> Multiset<E> adapt(com.google.common.collect.Multiset<E> mSet)
-
adapt
public <E> com.google.common.collect.Multiset<E> adapt(Multiset<E> mSet)
-
-