Rule Execution Server API

ilog.rules.res.model
Interface IlrRulesetParameter


public interface IlrRulesetParameter

Represents a ruleset parameter.

Since:
7.5

Field Summary
static byte DIRECTION_IN
          The in direction.
static byte DIRECTION_INOUT
          The inout direction.
static byte DIRECTION_OUT
          The out direction.
static byte KIND_JAVA_OBJECT
          The kind for Java objects.
static byte KIND_XML
          The kind for XML parameters.
 
Method Summary
 byte getDirection()
          Gets the direction of this parameter.
 byte getKind()
          Gets the kind of this parameter.
 String getName()
          Gets the name of this parameter.
 String getType()
          Gets the type of this parameter.
 

Field Detail

KIND_JAVA_OBJECT

static final byte KIND_JAVA_OBJECT
The kind for Java objects.

See Also:
Constant Field Values

KIND_XML

static final byte KIND_XML
The kind for XML parameters.

See Also:
Constant Field Values

DIRECTION_IN

static final byte DIRECTION_IN
The in direction.

See Also:
Constant Field Values

DIRECTION_OUT

static final byte DIRECTION_OUT
The out direction.

See Also:
Constant Field Values

DIRECTION_INOUT

static final byte DIRECTION_INOUT
The inout direction.

See Also:
Constant Field Values
Method Detail

getName

String getName()
Gets the name of this parameter.

Returns:
The name.

getType

String getType()
Gets the type of this parameter.

Returns:
The type.

getKind

byte getKind()
Gets the kind of this parameter.

Returns:
The kind.
See Also:
KIND_JAVA_OBJECT, KIND_XML

getDirection

byte getDirection()
Gets the direction of this parameter.

Returns:
The direction.
See Also:
DIRECTION_IN, DIRECTION_OUT, DIRECTION_INOUT

Rule Execution Server API

© Copyright IBM Corp. 1987, 2012