fork download
  1. public class Column {
  2. private final Table.Type type;
  3. private final String attribute;
  4.  
  5. public Column(final Table.Type type, final String attribute) {
  6. this.type = type;
  7. this.attribute = attribute;
  8. }
  9.  
  10. public Table.Type getType() {
  11. return type;
  12. }
  13.  
  14. public String getAttribute() {
  15. return attribute;
  16. }
  17. }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty