Enum IMapper.Language
- java.lang.Object
-
- java.lang.Enum<IMapper.Language>
-
- org.aksw.limes.core.measures.mapper.IMapper.Language
-
- All Implemented Interfaces:
Serializable,Comparable<IMapper.Language>
- Enclosing interface:
- IMapper
public static enum IMapper.Language extends Enum<IMapper.Language>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IMapper.LanguagevalueOf(String name)Returns the enum constant of this type with the specified name.static IMapper.Language[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EN
public static final IMapper.Language EN
-
FR
public static final IMapper.Language FR
-
DE
public static final IMapper.Language DE
-
NULL
public static final IMapper.Language NULL
-
-
Method Detail
-
values
public static IMapper.Language[] 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 (IMapper.Language c : IMapper.Language.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IMapper.Language 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
-
-