Package hydra.workflow
Class SchemaSpec
- java.lang.Object
-
- hydra.workflow.SchemaSpec
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
SchemaSpec.File
,SchemaSpec.Hydra
,SchemaSpec.Provided
public abstract class SchemaSpec extends java.lang.Object implements java.io.Serializable
The specification of a schema at the source end of a workflow- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SchemaSpec.File
A schema provided as a file, available at the given file pathstatic class
SchemaSpec.Hydra
A native Hydra schemastatic interface
SchemaSpec.PartialVisitor<R>
static class
SchemaSpec.Provided
A schema which will be provided within the workflowstatic interface
SchemaSpec.Visitor<R>
-
Field Summary
Fields Modifier and Type Field Description static Name
FIELD_NAME_FILE
static Name
FIELD_NAME_HYDRA
static Name
FIELD_NAME_PROVIDED
static Name
TYPE_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> R
accept(SchemaSpec.Visitor<R> visitor)
-
-
-
Method Detail
-
accept
public abstract <R> R accept(SchemaSpec.Visitor<R> visitor)
-
-