aboutsummaryrefslogtreecommitdiff
path: root/src/uk/org/ury/library/LibraryItemProperty.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/uk/org/ury/library/LibraryItemProperty.java')
-rw-r--r--src/uk/org/ury/library/LibraryItemProperty.java43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/uk/org/ury/library/LibraryItemProperty.java b/src/uk/org/ury/library/LibraryItemProperty.java
deleted file mode 100644
index 154e405..0000000
--- a/src/uk/org/ury/library/LibraryItemProperty.java
+++ /dev/null
@@ -1,43 +0,0 @@
-package uk.org.ury.library;
-
-/**
- * The parameters that are stored in the LibraryItem.
- *
- * @author Matt Windsor
- */
-
-public enum LibraryItemProperty
- {
- // Constant SQL identifier
- TITLE ("title"),
- ALBUM ("album"),
- ARTIST ("artist"),
- LABEL ("label"),
- STATUS ("status"),
- MEDIUM ("medium"),
- FORMAT ("format"),
- DATE_RELEASED ("datereleased"),
- DATE_ADDED ("dateadded"),
- DATE_EDITED ("dateedited"),
- SHELF_LETTER ("shelfletter"),
- SHELF_NUMBER ("shelfnumber"),
- CD_ID ("cdid"),
- ADD_MEMBER_ID ("memberid_add"),
- EDIT_MEMBER_ID ("memberid_lastedit"),
- ADD_FORENAME ("fnameadd"),
- ADD_SURNAME ("snameadd"),
- EDIT_FORENAME ("fnameedit"),
- EDIT_SURNAME ("snameedit"),
- IS_DIGITISED ("digitised"),
- IS_CLEAN ("clean");
-
-
- public final String sql;
-
-
- private
- LibraryItemProperty (String sql)
- {
- this.sql = sql;
- }
- }; \ No newline at end of file