Enum DypsisMappingCore.NameLevelUnificationStrategy
- java.lang.Object
-
- java.lang.Enum<DypsisMappingCore.NameLevelUnificationStrategy>
-
- de.julielab.genemapper.mappingcores.DypsisMappingCore.NameLevelUnificationStrategy
-
- All Implemented Interfaces:
Serializable,Comparable<DypsisMappingCore.NameLevelUnificationStrategy>
- Enclosing class:
- DypsisMappingCore
public static enum DypsisMappingCore.NameLevelUnificationStrategy extends Enum<DypsisMappingCore.NameLevelUnificationStrategy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GAZETTEER_FIRSTJNET_FIRSTJNET_ONLYLONGER_FIRST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DypsisMappingCore.NameLevelUnificationStrategyvalueOf(String name)Returns the enum constant of this type with the specified name.static DypsisMappingCore.NameLevelUnificationStrategy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JNET_FIRST
public static final DypsisMappingCore.NameLevelUnificationStrategy JNET_FIRST
-
GAZETTEER_FIRST
public static final DypsisMappingCore.NameLevelUnificationStrategy GAZETTEER_FIRST
-
LONGER_FIRST
public static final DypsisMappingCore.NameLevelUnificationStrategy LONGER_FIRST
-
JNET_ONLY
public static final DypsisMappingCore.NameLevelUnificationStrategy JNET_ONLY
-
-
Method Detail
-
values
public static DypsisMappingCore.NameLevelUnificationStrategy[] 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 (DypsisMappingCore.NameLevelUnificationStrategy c : DypsisMappingCore.NameLevelUnificationStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DypsisMappingCore.NameLevelUnificationStrategy 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
-
-