V
Vojta
Hello,
I'm new to Java, can you please give an advice? In Delphi I could do this:
type
TFruit = (ftApple, ftOrange, ftBanana ...);
TFruits = set of TFruit;
Is it possible to the same in Java?
enum Fruit {APPLE, ORANGE, BANANA ...};
???
Thank you
Vojta
I'm new to Java, can you please give an advice? In Delphi I could do this:
type
TFruit = (ftApple, ftOrange, ftBanana ...);
TFruits = set of TFruit;
Is it possible to the same in Java?
enum Fruit {APPLE, ORANGE, BANANA ...};
???
Thank you