Enum Class PythonIncrementalMode
- All Implemented Interfaces:
Serializable, Comparable<PythonIncrementalMode>, Constable
Controls how incremental compilation handles dynamic or unresolved Python relationships.
- Since:
- 5.2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionReprocess every Python source when static dependency analysis cannot prove isolation.Reprocess only sources selected by the statically discovered dependency graph. -
Method Summary
Modifier and TypeMethodDescriptionstatic PythonIncrementalModeReturns the enum constant of this class with the specified name.static PythonIncrementalMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONSERVATIVE
Reprocess every Python source when static dependency analysis cannot prove isolation. -
OPTIMISTIC
Reprocess only sources selected by the statically discovered dependency graph.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-