Finished the Flux example.

This commit is contained in:
Ilkka Seppala
2015-05-03 23:07:07 +03:00
parent c288f13b21
commit 718b3cc61d
10 changed files with 123 additions and 20 deletions
+11 -1
View File
@@ -2,6 +2,16 @@ package com.iluwatar;
public enum MenuItem {
HOME, PRODUCTS, COMPANY;
HOME("Home"), PRODUCTS("Products"), COMPANY("Company");
private String title;
MenuItem(String title) {
this.title = title;
}
@Override
public String toString() {
return title;
}
}