public enum StructuredFallbackPolicy extends Enum<StructuredFallbackPolicy>
| Enum Constant and Description |
|---|
DROP
Drop the function from lineage entirely.
|
USE_GENERIC_FUNCTION_LINEAGE
Default: fall back to ordinary generic function lineage if structured modeling fails.
|
| Modifier and Type | Method and Description |
|---|---|
static StructuredFallbackPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructuredFallbackPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructuredFallbackPolicy USE_GENERIC_FUNCTION_LINEAGE
public static final StructuredFallbackPolicy DROP
public static StructuredFallbackPolicy[] values()
for (StructuredFallbackPolicy c : StructuredFallbackPolicy.values()) System.out.println(c);
public static StructuredFallbackPolicy 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 null