Enum PreprocessingFunctionType
- java.lang.Object
-
- java.lang.Enum<PreprocessingFunctionType>
-
- org.aksw.limes.core.io.preprocessing.PreprocessingFunctionType
-
- All Implemented Interfaces:
Serializable,Comparable<PreprocessingFunctionType>
public enum PreprocessingFunctionType extends Enum<PreprocessingFunctionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLEAN_IRICLEAN_NUMBERCONCATREGEX_REPLACEREMOVE_BRACESREMOVE_LANGUAGE_TAGREMOVE_NON_ALPHANUMERICRENAME_PROPERTYREPLACESPLITTO_CELSIUSTO_FAHRENHEITTO_LOWERCASETO_UPPERCASETO_WKT_POINTURI_AS_STRING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PreprocessingFunctionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PreprocessingFunctionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLEAN_IRI
public static final PreprocessingFunctionType CLEAN_IRI
-
CLEAN_NUMBER
public static final PreprocessingFunctionType CLEAN_NUMBER
-
CONCAT
public static final PreprocessingFunctionType CONCAT
-
REGEX_REPLACE
public static final PreprocessingFunctionType REGEX_REPLACE
-
REMOVE_LANGUAGE_TAG
public static final PreprocessingFunctionType REMOVE_LANGUAGE_TAG
-
RENAME_PROPERTY
public static final PreprocessingFunctionType RENAME_PROPERTY
-
REPLACE
public static final PreprocessingFunctionType REPLACE
-
TO_CELSIUS
public static final PreprocessingFunctionType TO_CELSIUS
-
TO_FAHRENHEIT
public static final PreprocessingFunctionType TO_FAHRENHEIT
-
TO_UPPERCASE
public static final PreprocessingFunctionType TO_UPPERCASE
-
TO_LOWERCASE
public static final PreprocessingFunctionType TO_LOWERCASE
-
REMOVE_BRACES
public static final PreprocessingFunctionType REMOVE_BRACES
-
REMOVE_NON_ALPHANUMERIC
public static final PreprocessingFunctionType REMOVE_NON_ALPHANUMERIC
-
URI_AS_STRING
public static final PreprocessingFunctionType URI_AS_STRING
-
SPLIT
public static final PreprocessingFunctionType SPLIT
-
TO_WKT_POINT
public static final PreprocessingFunctionType TO_WKT_POINT
-
-
Method Detail
-
values
public static PreprocessingFunctionType[] 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 (PreprocessingFunctionType c : PreprocessingFunctionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PreprocessingFunctionType 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
-
-