Package owl.run
Class Environment
- java.lang.Object
-
- owl.run.Environment
-
public abstract class Environment extends Object
The environment makes global configuration available to all parts of the pipeline. For example, it provides anfactory supplier
that is supposed to be used by all implementations.
-
-
Constructor Summary
Constructors Constructor Description Environment()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Environment
annotated()
abstract boolean
annotations()
FactorySupplier
factorySupplier()
static Environment
of(boolean annotated)
static Environment
standard()
-
-
-
Method Detail
-
annotations
public abstract boolean annotations()
-
factorySupplier
public FactorySupplier factorySupplier()
-
of
public static Environment of(boolean annotated)
-
annotated
public static Environment annotated()
-
standard
public static Environment standard()
-
-