aboutsummaryrefslogtreecommitdiff
path: root/src/uk/org/ury/show/ShowItemProperty.java
blob: a722a211cc891dc9797eb7092bfb94c88f3bbaae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package uk.org.ury.show;


/**
 * Enumeration of the parameters that are stored in a ShowItem.
 * 
 * @author  Matt Windsor
 */

public enum ShowItemProperty
  {
    // Constant     SQL identifier       
    NAME1           ("name1"),
    NAME2           ("name2"),
    POSITION        ("positionid");
  
  
    public final String sql;
  
  
    private
    ShowItemProperty (String sql)
    {
      this.sql = sql;
    }
  };