Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. @Override
  2. public int compareTo(final Flows that) {
  3. return ComparisonChain.start().
  4. compare(this.srcAddr, that.srcAddr).
  5. compare(this.dstAddr, that.dstAddr).
  6. compare(this.srcPort, that.srcPort).
  7. compare(this.dstPort, that.dstPort).
  8. compare(this.protocol, that.protocol).
  9. result();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement