Uses of Class
com.pervasive.datarush.ports.LogicalPort.Direction
-
Packages that use LogicalPort.Direction Package Description com.pervasive.datarush.ports Provides classes and interfaces related to receiving and sending data in a dataflow graph.com.pervasive.datarush.ports.model Provides implementations of port objects dealing with the flow of single objects between operators.com.pervasive.datarush.script -
-
Uses of LogicalPort.Direction in com.pervasive.datarush.ports
Methods in com.pervasive.datarush.ports that return LogicalPort.Direction Modifier and Type Method Description LogicalPort.Direction
LogicalPort. getDirection()
Returns whether this port is for input or outputstatic LogicalPort.Direction
LogicalPort.Direction. valueOf(String name)
Returns the enum constant of this type with the specified name.static LogicalPort.Direction[]
LogicalPort.Direction. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.pervasive.datarush.ports with parameters of type LogicalPort.Direction Modifier and Type Method Description abstract T
LogicalPortFactory. newPort(LogicalOperator owner, String name, LogicalPort.Direction direction, boolean optional)
Public only as a matter of implementation; clients should not use this method directly.Constructors in com.pervasive.datarush.ports with parameters of type LogicalPort.Direction Constructor Description LogicalPort(LogicalOperator owner, String name, LogicalPort.Direction direction, boolean optional)
Create a new LogicalPort -
Uses of LogicalPort.Direction in com.pervasive.datarush.ports.model
Methods in com.pervasive.datarush.ports.model with parameters of type LogicalPort.Direction Modifier and Type Method Description SimpleModelPort<T>
SimpleModelPort.Factory. newPort(LogicalOperator owner, String name, LogicalPort.Direction direction, boolean optional)
Constructors in com.pervasive.datarush.ports.model with parameters of type LogicalPort.Direction Constructor Description AbstractModelPort(LogicalOperator owner, String name, LogicalPort.Direction direction, boolean optional, ModelStorageHandler<T> storageHandler)
Subclasses must invoke this constructor -
Uses of LogicalPort.Direction in com.pervasive.datarush.script
Methods in com.pervasive.datarush.script that return LogicalPort.Direction Modifier and Type Method Description LogicalPort.Direction
PortDescriptor. getDirection()
Get the port direction.Constructors in com.pervasive.datarush.script with parameters of type LogicalPort.Direction Constructor Description PortDescriptor(String name, LogicalPort.Direction direction, int index, Class<? extends LogicalPort> portClass, String description, boolean optional)
Construct a port definition.
-