Uses of Interface
com.pervasive.datarush.graphs.GraphPath
-
Packages that use GraphPath Package Description com.pervasive.datarush.graphs Provides classes and interfaces for the construction of executable dataflow graphs.com.pervasive.datarush.operators Provides classes and interfaces for developing dataflow operators.com.pervasive.datarush.types Provides classes and interfaces for the description of token data types. -
-
Uses of GraphPath in com.pervasive.datarush.graphs
Methods in com.pervasive.datarush.graphs that return GraphPath Modifier and Type Method Description GraphPath
GraphPath. append(String name)
Create a new path equivalent to this one with an additional name appended.GraphPath
LogicalGraphInstanceView. getPath()
Returns the base path of this graph instance.GraphPath
OperatorInstance. getPath()
Returns the full path name of this operator.GraphPath
PortInstance. getPath()
Returns the path corresponding to this port.GraphPath
InputPortInstance. getSourcePath()
Returns the path to the source port.static GraphPath
GraphPaths. parse(String pathString)
De-serializes a path from the given string.static GraphPath
GraphPaths. path(String name)
Create a path containing a single name.static GraphPath
GraphPaths. path(String... names)
Create a path containing the given sequence of names.GraphPath
LogicalStatistic.Builder. path()
Returns the value forLogicalStatistic.path()
.GraphPath
LogicalStatistic. path()
Returns the full path of the port or operator described by this statistics object.GraphPath
GraphPath. prepend(String name)
Create a new path equivalent to this one with an additional name prepended.static GraphPath
GraphPaths. remainder(GraphPath path)
Returns aGraphPath
consisting of all but the first element of the pathMethods in com.pervasive.datarush.graphs with parameters of type GraphPath Modifier and Type Method Description static String
GraphPaths. first(GraphPath path)
Returns the first element of the pathObject
PropertyValued. getProperty(GraphPath path)
Returns a property of the given path.static String
GraphPaths. last(GraphPath path)
Returns the last element of the pathLogicalStatistic.Builder
LogicalStatistic.Builder. path(GraphPath path)
Sets the value forLogicalStatistic.path()
.void
GraphCompilationListener. preCompile(MetadataContext ctx, GraphPath path, LogicalOperator operator)
Invoked just prior to compiling an operator.static GraphPath
GraphPaths. remainder(GraphPath path)
Returns aGraphPath
consisting of all but the first element of the pathvoid
PropertyValued. setProperty(GraphPath path, Object value)
Sets a property of the given path.Constructors in com.pervasive.datarush.graphs with parameters of type GraphPath Constructor Description DROperatorException(GraphPath path, Throwable cause)
Creates a wrapper for the specified error associated with the given node. -
Uses of GraphPath in com.pervasive.datarush.operators
Methods in com.pervasive.datarush.operators that return GraphPath Modifier and Type Method Description GraphPath
MetadataContext. getPath()
Returns the path of the operator being composed.GraphPath
OperatorSettings. getRelativePath()
Returns the relative path of the operator.Methods in com.pervasive.datarush.operators with parameters of type GraphPath Modifier and Type Method Description static OperatorSettings
OperatorSettings. RELATIVE_PATH(GraphPath path)
Operator settings withrelativePath
set to the specified value.OperatorSettings
OperatorSettings. rename(GraphPath path)
Returns an operator settings object, equivalent to this, but withrelativePath
andname
set to the specified value. -
Uses of GraphPath in com.pervasive.datarush.types
Methods in com.pervasive.datarush.types that return GraphPath Modifier and Type Method Description GraphPath
FieldTypeNotSupportedException. getField()
Gets the path of the field which caused the error.GraphPath
FieldTypesNotComparableException. getLeftField()
Gets the path of the field on the left side of the comparison which raised this exception.GraphPath
FieldTypesNotComparableException. getRightField()
Gets the path of the field on the right side of the comparison which raised this exception.Constructors in com.pervasive.datarush.types with parameters of type GraphPath Constructor Description FieldTypeNotSupportedException(GraphPath field, TokenType type)
Constructs aFieldTypeNotSupportedException
indicating the type and path of the field in error.FieldTypesNotComparableException(GraphPath leftField, GraphPath rightField, TypesNotComparableException failure)
Constructs aFieldTypesNotComparableException
indicating the specified paths, caused by the given failure.
-