Interface Matchable<T>
-
- All Known Implementing Classes:
Attribute,AttributeSet
public interface Matchable<T>An interface for defining non-strict equality, e.g. such as attributes being of the same type but not necessarily having the same value. The default behaviour delegates toObject.equals(Object).- Since:
- 9.2
- Author:
- Tristan Tarrant
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default booleanmatches(T other)
-
-
-
Method Detail
-
matches
default boolean matches(T other)
-
-