Guest User

Untitled

a guest
Dec 17th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. enum {
  2. bobtrue,
  3. bobfalse
  4. } customBool;
  5.  
  6.  
  7. ----
  8.  
  9. customBool bob;
  10.  
  11. if(bob == bobtrue)
  12. {
  13. //bob is true, do whatever
  14. }
  15. else if(bob == bobfalse)
  16. {
  17. //bob is false, do whatever
  18. }
  19.  
  20. else
  21. {
  22. //bob is either true and false, or neither true nor false, do whatever/
  23. }
Add Comment
Please, Sign In to add comment