Uses of Class
io.serverlessworkflow.api.WorkflowFormat
-
Packages that use WorkflowFormat Package Description io.serverlessworkflow.api -
-
Uses of WorkflowFormat in io.serverlessworkflow.api
Methods in io.serverlessworkflow.api that return WorkflowFormat Modifier and Type Method Description static WorkflowFormat
WorkflowFormat. fromFileName(String fileName)
static WorkflowFormat
WorkflowFormat. fromPath(Path path)
static WorkflowFormat
WorkflowFormat. valueOf(String name)
Returns the enum constant of this type with the specified name.static WorkflowFormat[]
WorkflowFormat. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.serverlessworkflow.api with parameters of type WorkflowFormat Modifier and Type Method Description static Workflow
WorkflowReader. readWorkflow(InputStream input, WorkflowFormat format)
static Workflow
WorkflowReader. readWorkflow(Reader input, WorkflowFormat format)
static Workflow
WorkflowReader. readWorkflow(Path path, WorkflowFormat format)
static Workflow
WorkflowReader. readWorkflowFromClasspath(String classpath, ClassLoader cl, WorkflowFormat format)
static void
WorkflowWriter. writeWorkflow(OutputStream output, Workflow workflow, WorkflowFormat format)
static void
WorkflowWriter. writeWorkflow(Writer output, Workflow workflow, WorkflowFormat format)
static void
WorkflowWriter. writeWorkflow(Path output, Workflow workflow, WorkflowFormat format)
-