Package software.kes.collectionviews
Class SetHelpers
- java.lang.Object
-
- software.kes.collectionviews.SetHelpers
-
public final class SetHelpers extends java.lang.ObjectHelper methods for implementers of customSets.If you are implementing a custom
Set, yourequalsandhashCodemethods SHOULD delegate tosetEqualsandsetHashCode, respectively. This will ensure that equality works correctly with the built-inSettypes.Your
toStringmethod MAY delegate tosetToString.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleansetEquals(Set<?> set, Set<?> other)static intsetHashCode(Set<?> set)static java.lang.StringsetToString(Set<?> set)
-