Update Precisions to reflect current names in the ontology

This commit is contained in:
rjy7 2011-01-10 20:25:13 +00:00
parent 464618a20d
commit 6adb72b267

View file

@ -300,13 +300,13 @@ public class VitroVocabulary {
private static final String DATETIME_NS = "http://vivoweb.org/ontology/core#";
protected static final String[] PRECISIONS = {
DATETIME_NS+"NoPrecision",
DATETIME_NS+"YearPrecision",
DATETIME_NS+"YearMonthPrecision",
DATETIME_NS+"YearMonthDayPrecision",
DATETIME_NS+"YearMonthDayHourPrecision",
DATETIME_NS+"YearMonthDayHourMinutePrecision",
DATETIME_NS+"YearMonthDayTimePrecision"};
DATETIME_NS+"noPrecision", // this individual doesn't actually exist in the ontology
DATETIME_NS+"yearPrecision",
DATETIME_NS+"yearMonthPrecision",
DATETIME_NS+"yearMonthDayPrecision",
DATETIME_NS+"yearMonthDayHourPrecision",
DATETIME_NS+"yearMonthDayHourMinutePrecision",
DATETIME_NS+"yearMonthDayTimePrecision"};
//The Precision.ordinal method is used so do
//not change the order of these enums.