compareTo method

int compareTo(
  1. MessageBlockBranch b
)

Implementation

int compareTo(MessageBlockBranch b) {
  if (_type == b._type) return 0;
  return _type.index.compareTo(b._type.index);
}