public enum BooleanFunctions extends Enum<BooleanFunctions>
| Enum Constant and Description |
|---|
AND |
EQUAL |
GREATER_OR_EQUAL |
GREATER_THAN |
IF |
IS_IN |
IS_MISSING |
IS_NOT_IN |
IS_NOT_MISSING |
IS_NOT_VALID |
IS_VALID |
LESS_OR_EQUAL |
LESS_THAN |
NOT |
NOT_EQUAL |
OR |
| Modifier and Type | Method and Description |
|---|---|
static BooleanFunctions |
byName(String name) |
String |
getName() |
Object |
getValue(Object[] inputData,
MiningField referredByFieldRef) |
static boolean |
isBooleanFunctions(String name) |
static boolean |
isBooleanFunctionsValidation(String name) |
boolean |
isValidation() |
static BooleanFunctions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BooleanFunctions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BooleanFunctions IS_MISSING
public static final BooleanFunctions IS_NOT_MISSING
public static final BooleanFunctions IS_VALID
public static final BooleanFunctions IS_NOT_VALID
public static final BooleanFunctions EQUAL
public static final BooleanFunctions NOT_EQUAL
public static final BooleanFunctions LESS_THAN
public static final BooleanFunctions LESS_OR_EQUAL
public static final BooleanFunctions GREATER_THAN
public static final BooleanFunctions GREATER_OR_EQUAL
public static final BooleanFunctions AND
public static final BooleanFunctions OR
public static final BooleanFunctions NOT
public static final BooleanFunctions IS_IN
public static final BooleanFunctions IS_NOT_IN
public static final BooleanFunctions IF
public static BooleanFunctions[] values()
for (BooleanFunctions c : BooleanFunctions.values()) System.out.println(c);
public static BooleanFunctions 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 isBooleanFunctions(String name)
public static boolean isBooleanFunctionsValidation(String name)
public static BooleanFunctions byName(String name)
public String getName()
public Object getValue(Object[] inputData, MiningField referredByFieldRef)
public boolean isValidation()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.