Advertisement
sergAccount

Untitled

Feb 14th, 2021
667
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.27 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.mycompany.ja10.model;
  7.  
  8. /**
  9.  *
  10.  * @author Admin
  11.  */
  12. public class Test2 {
  13.  
  14.     public static void printColor(MyColor c){
  15.         System.out.println("c=" + c);        
  16.     }
  17.     //
  18.     public static void printInfo(MyColor c){
  19.         System.out.println("c=" + c);        
  20.         // switch
  21.         switch (c) {
  22.             case BLUE:                
  23.                 System.out.println("Синий цвет");
  24.                 break;
  25.             case RED:                
  26.                 System.out.println("Красный цвет");
  27.                 break;
  28.             default:
  29.                 System.out.println("нет совпадений");
  30.         }
  31.     }
  32.     //
  33.     public static void main(String[] args) {
  34.         MyColor c = MyColor.BLUE;                
  35.         printColor(MyColor.BLUE);
  36.         // получаем все константы
  37.         for(MyColor color: MyColor.values()){
  38.             System.out.println("color=" + color);
  39.         }
  40.         System.out.println("c.name()=" + c.name());
  41.         printInfo(MyColor.GREEN);
  42.        
  43.     }
  44. }
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement