Guest User

Untitled

a guest
Oct 19th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public enum DisplayMode {
  2. MOVIE_MODE(0), THEATHER_MODE (1) ;
  3. private final int id;
  4. DisplayMode(int id) {
  5. this.id = id;
  6. }
  7. public int Id(){
  8. return this.id;
  9. }
  10. }
Add Comment
Please, Sign In to add comment