blob: 43d4e99497587838a1e591e51013aad1eeaad4c0 (
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.common.show.item;
/**
* 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;
}
};
|