Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Real-Time Decisions
11g Release 1 (11.1.1)

E17787-01


com.sigmadynamics.server.rtis.PredictionEngine
Interface InputCollector


public interface InputCollector

This interface is implemented by the Prediction Engine to receive attribute values from an application. This is the Visitor to the InputProvider's Acceptor.

Since:
1.0

Method Summary
 void put(int attributeId, boolean value)
          Passes value of a boolean attribute.
 void put(int attributeId, double value)
          Passes value of a numeric attribute.
 void put(int attributeId, int value)
          Passes value of a numeric attribute.
 void put(int attributeId, long value)
          Passes value of a date attribute.
 void put(int attributeId, java.lang.Object value)
          Passes value of an Object attribute.
 void put(int attributeId, SDBooleanArray values)
          Passes value of boolean array attribute.
 void put(int attributeId, SDDoubleArray values)
          Passes value of numeric array attribute.
 void put(int attributeId, SDIntArray values)
          Passes value of numeric array attribute.
 void put(int attributeId, SDLongArray values)
          Passes value of date array attribute.
 void put(int attributeId, SDObjectArray values)
          Passes value of Object array attribute.
 void put(int attributeId, SDStringArray values)
          Passes value of string array attribute.
 void put(int attributeId, java.lang.String value)
          Passes value of string attribute.

 

Method Detail

put

void put(int attributeId,
         java.lang.String value)
Passes value of string attribute.
Parameters:
attributeId - an integer attribute ID.
value - attribute value.

put

void put(int attributeId,
         double value)
Passes value of a numeric attribute.
Parameters:
attributeId - an integer attribute ID.
value - attribute value.

put

void put(int attributeId,
         int value)
Passes value of a numeric attribute.
Parameters:
attributeId - an integer attribute ID.
value - attribute value.

put

void put(int attributeId,
         long value)
Passes value of a date attribute.
Parameters:
attributeId - an integer attribute ID.
value - attribute value.

put

void put(int attributeId,
         boolean value)
Passes value of a boolean attribute.
Parameters:
attributeId - an integer attribute ID.
value - attribute value.

put

void put(int attributeId,
         java.lang.Object value)
Passes value of an Object attribute.
Parameters:
attributeId - an integer attribute ID.
value - attribute value.

put

void put(int attributeId,
         SDStringArray values)
Passes value of string array attribute.
Parameters:
attributeId - an integer attribute ID.
values - an array of string values.

put

void put(int attributeId,
         SDDoubleArray values)
Passes value of numeric array attribute.
Parameters:
attributeId - an integer attribute ID.
values - an array of numeric values.

put

void put(int attributeId,
         SDIntArray values)
Passes value of numeric array attribute.
Parameters:
attributeId - an integer attribute ID.
values - an array of numeric values.

put

void put(int attributeId,
         SDLongArray values)
Passes value of date array attribute.
Parameters:
attributeId - an integer attribute ID.
values - an array of numeric values.

put

void put(int attributeId,
         SDBooleanArray values)
Passes value of boolean array attribute.
Parameters:
attributeId - an integer attribute ID.
values - an array of boolean values.

put

void put(int attributeId,
         SDObjectArray values)
Passes value of Object array attribute.
Parameters:
attributeId - an integer attribute ID.
values - an array of Object values.

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Real-Time Decisions
11g Release 1 (11.1.1)

E17787-01


Copyright © 2010, Oracle. All rights reserved.