diff options
Diffstat (limited to 'src/uk/org/ury/show/item/ShowItemProperty.java')
-rw-r--r-- | src/uk/org/ury/show/item/ShowItemProperty.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/uk/org/ury/show/item/ShowItemProperty.java b/src/uk/org/ury/show/item/ShowItemProperty.java new file mode 100644 index 0000000..a4239b5 --- /dev/null +++ b/src/uk/org/ury/show/item/ShowItemProperty.java @@ -0,0 +1,26 @@ +package uk.org.ury.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; + } + };
\ No newline at end of file |