public enum BUILTIN_FUNCTIONS extends Enum<BUILTIN_FUNCTIONS>
| Modifier and Type | Method and Description |
|---|---|
static BUILTIN_FUNCTIONS |
byName(String name) |
static void |
checkBoolean(Object object) |
static void |
checkBooleans(Object[] inputData,
int expectedSize) |
static void |
checkDate(Object object) |
static void |
checkDates(Object[] inputData,
int expectedSize) |
static void |
checkInteger(Object object) |
static void |
checkLength(Object[] inputData,
int expectedSize) |
static void |
checkMinimumLength(Object[] inputData,
int minimumLength) |
static void |
checkNumber(Object object) |
static void |
checkNumbers(Object[] inputData,
int expectedSize) |
static void |
checkRangeLength(Object[] inputData,
int minimumLength,
int maximumLength) |
static void |
checkString(Object object) |
static void |
checkStrings(Object[] inputData,
int expectedSize) |
String |
getName() |
Object |
getValue(Object[] inputData,
MiningField referredByFieldRef) |
static boolean |
isBUILTIN_FUNCTIONS_VALIDATION(String name) |
static boolean |
isBUILTIN_FUNCTIONS(String name) |
static BUILTIN_FUNCTIONS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BUILTIN_FUNCTIONS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BUILTIN_FUNCTIONS PLUS
public static final BUILTIN_FUNCTIONS MINUS
public static final BUILTIN_FUNCTIONS MULTI
public static final BUILTIN_FUNCTIONS DIVISION
public static final BUILTIN_FUNCTIONS MIN
public static final BUILTIN_FUNCTIONS MAX
public static final BUILTIN_FUNCTIONS SUM
public static final BUILTIN_FUNCTIONS AVG
public static final BUILTIN_FUNCTIONS MEDIAN
public static final BUILTIN_FUNCTIONS PRODUCT
public static final BUILTIN_FUNCTIONS LOG10
public static final BUILTIN_FUNCTIONS LN
public static final BUILTIN_FUNCTIONS SQRT
public static final BUILTIN_FUNCTIONS ABS
public static final BUILTIN_FUNCTIONS EXP
public static final BUILTIN_FUNCTIONS POW
public static final BUILTIN_FUNCTIONS THRESHOLD
public static final BUILTIN_FUNCTIONS FLOOR
public static final BUILTIN_FUNCTIONS CEIL
public static final BUILTIN_FUNCTIONS ROUND
public static final BUILTIN_FUNCTIONS MODULO
public static final BUILTIN_FUNCTIONS IS_MISSING
public static final BUILTIN_FUNCTIONS IS_NOT_MISSING
public static final BUILTIN_FUNCTIONS IS_VALID
public static final BUILTIN_FUNCTIONS IS_NOT_VALID
public static final BUILTIN_FUNCTIONS EQUAL
public static final BUILTIN_FUNCTIONS NOT_EQUAL
public static final BUILTIN_FUNCTIONS LESS_THAN
public static final BUILTIN_FUNCTIONS LESS_OR_EQUAL
public static final BUILTIN_FUNCTIONS GREATER_THAN
public static final BUILTIN_FUNCTIONS GREATER_OR_EQUAL
public static final BUILTIN_FUNCTIONS AND
public static final BUILTIN_FUNCTIONS OR
public static final BUILTIN_FUNCTIONS NOT
public static final BUILTIN_FUNCTIONS IS_IN
public static final BUILTIN_FUNCTIONS IS_NOT_IN
public static final BUILTIN_FUNCTIONS IF
public static final BUILTIN_FUNCTIONS UPPERCASE
public static final BUILTIN_FUNCTIONS LOWERCASE
public static final BUILTIN_FUNCTIONS STRING_LENGTH
public static final BUILTIN_FUNCTIONS SUBSTRING
public static final BUILTIN_FUNCTIONS TRIM_BLANKS
public static final BUILTIN_FUNCTIONS CONCAT
public static final BUILTIN_FUNCTIONS REPLACE
public static final BUILTIN_FUNCTIONS MATCHES
public static final BUILTIN_FUNCTIONS FORMAT_NUMBER
public static final BUILTIN_FUNCTIONS FORMAT_DATE_TIME
public static final BUILTIN_FUNCTIONS DATE_DAYS_SINCE_YEAR
public static final BUILTIN_FUNCTIONS DATE_SECONDS_SINCE_YEAR
public static final BUILTIN_FUNCTIONS DATE_SECONDS_SINCE_MIDNIGHT
public static final BUILTIN_FUNCTIONS NORMAL_CDF
public static final BUILTIN_FUNCTIONS NORMAL_PDF
public static final BUILTIN_FUNCTIONS STD_NORMAL_CDF
public static final BUILTIN_FUNCTIONS STD_NORMAL_PDF
public static final BUILTIN_FUNCTIONS ERF
public static final BUILTIN_FUNCTIONS NORMAL_IDF
public static final BUILTIN_FUNCTIONS STD_NORMAL_IDF
public static final BUILTIN_FUNCTIONS EXPM1
public static final BUILTIN_FUNCTIONS HYPOT
public static final BUILTIN_FUNCTIONS LN1P
public static final BUILTIN_FUNCTIONS RINT
public static final BUILTIN_FUNCTIONS SIN
public static final BUILTIN_FUNCTIONS ASIN
public static final BUILTIN_FUNCTIONS SINH
public static final BUILTIN_FUNCTIONS COS
public static final BUILTIN_FUNCTIONS ACOS
public static final BUILTIN_FUNCTIONS COSH
public static final BUILTIN_FUNCTIONS TAN
public static final BUILTIN_FUNCTIONS ATAN
public static final BUILTIN_FUNCTIONS TANH
public static BUILTIN_FUNCTIONS[] values()
for (BUILTIN_FUNCTIONS c : BUILTIN_FUNCTIONS.values()) System.out.println(c);
public static BUILTIN_FUNCTIONS 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 nullpublic static boolean isBUILTIN_FUNCTIONS(String name)
public static boolean isBUILTIN_FUNCTIONS_VALIDATION(String name)
public static BUILTIN_FUNCTIONS byName(String name)
public String getName()
public Object getValue(Object[] inputData, MiningField referredByFieldRef)
public static void checkNumbers(Object[] inputData, int expectedSize)
public static void checkNumber(Object object)
public static void checkInteger(Object object)
public static void checkStrings(Object[] inputData, int expectedSize)
public static void checkString(Object object)
public static void checkBooleans(Object[] inputData, int expectedSize)
public static void checkBoolean(Object object)
public static void checkDates(Object[] inputData, int expectedSize)
public static void checkDate(Object object)
public static void checkLength(Object[] inputData, int expectedSize)
public static void checkMinimumLength(Object[] inputData, int minimumLength)
public static void checkRangeLength(Object[] inputData, int minimumLength, int maximumLength)
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.