Package software.kes.collectionviews
Class SetHelpers
- java.lang.Object
-
- software.kes.collectionviews.SetHelpers
-
public final class SetHelpers extends java.lang.Object
Helper methods for implementers of customSet
s.If you are implementing a custom
Set
, yourequals
andhashCode
methods SHOULD delegate tosetEquals
andsetHashCode
, respectively. This will ensure that equality works correctly with the built-inSet
types.Your
toString
method MAY delegate tosetToString
.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
setEquals(Set<?> set, Set<?> other)
static int
setHashCode(Set<?> set)
static java.lang.String
setToString(Set<?> set)
-