blob: 623b35dfceab0e8efd6398610b169ce6c27446c6 [file] [log] [blame]
package brooklyn.web.console;
public enum MyEnumWithGetterMethod {
A {
public String getFoo() { return "a"; }
},
B {
public String getFoo() { return "b"; }
};
public abstract String getFoo();
}