public static enum Phase.CleanupMode extends Enum<Phase.CleanupMode>
Enum Constant and Description |
---|
ALL
All input fields and any fields generated for field processing are removed.
|
INTERMEDIATE
Only those fields generated for field processing should be removed.
|
NONE
No fields should be removed, including those generated for field processing
|
Modifier and Type | Method and Description |
---|---|
boolean |
removeInputs()
Indicates whether input fields for the phase should
be removed.
|
boolean |
removeIntermediates()
Indicates whether intermediate fields produced to get phase results should
be removed.
|
static Phase.CleanupMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Phase.CleanupMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Phase.CleanupMode NONE
public static final Phase.CleanupMode INTERMEDIATE
public static final Phase.CleanupMode ALL
public static Phase.CleanupMode[] values()
for (Phase.CleanupMode c : Phase.CleanupMode.values()) System.out.println(c);
public static Phase.CleanupMode 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 boolean removeIntermediates()
true
to remove intermediate fields, false
otherwise.public boolean removeInputs()
true
to remove input fields, false
otherwise.Copyright © 2016 Actian Corporation. All rights reserved.