public interface State extends Comparable<State>
matches(State)
)
so that we can determine which states can be compared against each other; states are comparable so that we can
determine which instance is the latest/newest/greatest (and likely should be retained).Modifier and Type | Method and Description |
---|---|
boolean |
matches(State other)
Check if a state matches another state.
|
byte[] |
toBytes() |
compareTo
boolean matches(State other)
other
- another statebyte[] toBytes()
Copyright © 2017. All rights reserved.