Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. package com.automayata;
  2.  
  3. public enum ConnectionQuality {
  4. /**
  5. * Bandwidth under 150 kbps.
  6. */
  7. POOR,
  8. /**
  9. * Bandwidth between 150 and 550 kbps.
  10. */
  11. MODERATE,
  12. /**
  13. * Bandwidth between 550 and 2000 kbps.
  14. */
  15. GOOD,
  16. /**
  17. * EXCELLENT - Bandwidth over 2000 kbps.
  18. */
  19. EXCELLENT,
  20. /**
  21. * Placeholder for unknown bandwidth. This is the initial value and will stay at this value
  22. * if a bandwidth cannot be accurately found.
  23. */
  24. UNKNOWN
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement