Package akka.util
Interface Subclassification<K>
-
public interface Subclassification<K>Typeclass which describes a classification hierarchy. Observe the contract betweenisEqualandisSubclass!
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisEqual(K x, K y)True if and only if x and y are of the same class.booleanisSubclass(K x, K y)True if and only if x is a subclass of y; equal classes must be considered sub-classes!
-