mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 02:39:37 +07:00
7 lines
148 B
Java
7 lines
148 B
Java
enum Language{
|
|
ENGLISH("Hi"), SPANISH("Hola"), FINNISH("Hei");
|
|
String greeting;
|
|
Language(String greeting){
|
|
this.greeting = greeting;
|
|
}
|
|
} |