Enum DataSetChooser.DataSets
- java.lang.Object
-
- java.lang.Enum<DataSetChooser.DataSets>
-
- org.aksw.limes.core.evaluation.evaluationDataLoader.DataSetChooser.DataSets
-
- All Implemented Interfaces:
Serializable,Comparable<DataSetChooser.DataSets>
- Enclosing class:
- DataSetChooser
public static enum DataSetChooser.DataSets extends Enum<DataSetChooser.DataSets>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABTBUYAMAZONGOOGLEPRODUCTSDBLPACMDBLPSCHOLARDBPLINKEDMDBDRUGSOAEI2014BOOKSPERSON1PERSON1_CSVPERSON2PERSON2_CSVRESTAURANTSRESTAURANTS_CSVRESTAURANTS_FIXED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataSetChooser.DataSetsvalueOf(String name)Returns the enum constant of this type with the specified name.static DataSetChooser.DataSets[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERSON1
public static final DataSetChooser.DataSets PERSON1
-
PERSON1_CSV
public static final DataSetChooser.DataSets PERSON1_CSV
-
PERSON2
public static final DataSetChooser.DataSets PERSON2
-
PERSON2_CSV
public static final DataSetChooser.DataSets PERSON2_CSV
-
RESTAURANTS
public static final DataSetChooser.DataSets RESTAURANTS
-
OAEI2014BOOKS
public static final DataSetChooser.DataSets OAEI2014BOOKS
-
RESTAURANTS_FIXED
public static final DataSetChooser.DataSets RESTAURANTS_FIXED
-
DBLPACM
public static final DataSetChooser.DataSets DBLPACM
-
ABTBUY
public static final DataSetChooser.DataSets ABTBUY
-
DBLPSCHOLAR
public static final DataSetChooser.DataSets DBLPSCHOLAR
-
AMAZONGOOGLEPRODUCTS
public static final DataSetChooser.DataSets AMAZONGOOGLEPRODUCTS
-
DBPLINKEDMDB
public static final DataSetChooser.DataSets DBPLINKEDMDB
-
DRUGS
public static final DataSetChooser.DataSets DRUGS
-
RESTAURANTS_CSV
public static final DataSetChooser.DataSets RESTAURANTS_CSV
-
-
Method Detail
-
values
public static DataSetChooser.DataSets[] 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 (DataSetChooser.DataSets c : DataSetChooser.DataSets.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataSetChooser.DataSets 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
-
-