public enum PreprocessingFunctionType extends Enum<PreprocessingFunctionType>
| Enum Constant and Description |
|---|
CLEAN_IRI |
CLEAN_NUMBER |
CONCAT |
REGEX_REPLACE |
REMOVE_BRACES |
REMOVE_LANGUAGE_TAG |
REMOVE_NON_ALPHANUMERIC |
RENAME_PROPERTY |
REPLACE |
SPLIT |
TO_CELSIUS |
TO_FAHRENHEIT |
TO_LOWERCASE |
TO_UPPERCASE |
TO_WKT_POINT |
URI_AS_STRING |
| Modifier and Type | Method and Description |
|---|---|
static PreprocessingFunctionType |
valueOf(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.
|
public static final PreprocessingFunctionType CLEAN_IRI
public static final PreprocessingFunctionType CLEAN_NUMBER
public static final PreprocessingFunctionType CONCAT
public static final PreprocessingFunctionType REGEX_REPLACE
public static final PreprocessingFunctionType REMOVE_LANGUAGE_TAG
public static final PreprocessingFunctionType RENAME_PROPERTY
public static final PreprocessingFunctionType REPLACE
public static final PreprocessingFunctionType TO_CELSIUS
public static final PreprocessingFunctionType TO_FAHRENHEIT
public static final PreprocessingFunctionType TO_UPPERCASE
public static final PreprocessingFunctionType TO_LOWERCASE
public static final PreprocessingFunctionType REMOVE_BRACES
public static final PreprocessingFunctionType REMOVE_NON_ALPHANUMERIC
public static final PreprocessingFunctionType URI_AS_STRING
public static final PreprocessingFunctionType SPLIT
public static final PreprocessingFunctionType TO_WKT_POINT
public static PreprocessingFunctionType[] values()
for (PreprocessingFunctionType c : PreprocessingFunctionType.values()) System.out.println(c);
public static PreprocessingFunctionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.