Enum WebappDaoFactorySDB.SDBDatasetMode
- java.lang.Object
-
- java.lang.Enum<WebappDaoFactorySDB.SDBDatasetMode>
-
- edu.cornell.mannlib.vitro.webapp.dao.jena.WebappDaoFactorySDB.SDBDatasetMode
-
- All Implemented Interfaces:
Serializable,Comparable<WebappDaoFactorySDB.SDBDatasetMode>
- Enclosing class:
- WebappDaoFactorySDB
public static enum WebappDaoFactorySDB.SDBDatasetMode extends Enum<WebappDaoFactorySDB.SDBDatasetMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSERTIONS_AND_INFERENCESASSERTIONS_ONLYINFERENCES_ONLY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WebappDaoFactorySDB.SDBDatasetModevalueOf(String name)Returns the enum constant of this type with the specified name.static WebappDaoFactorySDB.SDBDatasetMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSERTIONS_ONLY
public static final WebappDaoFactorySDB.SDBDatasetMode ASSERTIONS_ONLY
-
INFERENCES_ONLY
public static final WebappDaoFactorySDB.SDBDatasetMode INFERENCES_ONLY
-
ASSERTIONS_AND_INFERENCES
public static final WebappDaoFactorySDB.SDBDatasetMode ASSERTIONS_AND_INFERENCES
-
-
Method Detail
-
values
public static WebappDaoFactorySDB.SDBDatasetMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WebappDaoFactorySDB.SDBDatasetMode c : WebappDaoFactorySDB.SDBDatasetMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebappDaoFactorySDB.SDBDatasetMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-