public enum FactMappingValueType extends Enum<FactMappingValueType>
FactMapping
value. Used ONLY in FrontEnd side, to determine if a
column value should be managed as an Expression.
- EXPRESSION: The value associated with the Fact is of Expression type.
- NOT_EXPRESSION: The specific value-type is defined by its content.Enum Constant and Description |
---|
EXPRESSION |
NOT_EXPRESSION |
Modifier and Type | Method and Description |
---|---|
static FactMappingValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FactMappingValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FactMappingValueType EXPRESSION
public static final FactMappingValueType NOT_EXPRESSION
public static FactMappingValueType[] values()
for (FactMappingValueType c : FactMappingValueType.values()) System.out.println(c);
public static FactMappingValueType 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 © 2001–2020 JBoss by Red Hat. All rights reserved.