1 package foo.bar; 2 3 public interface BinaryExpr { 4 5 enum Operator { 6 OR("||"), 7 AND("&&"); 8 Operator(String codeRepresentation)9 Operator(String codeRepresentation) { } 10 } 11 } 12