ReferenceDataObject

ReferenceDataObject stores, queries, and manages contextual reference data

Learn what it is

Contextual data

Package location

com.fractalworks.streams.sdk.referencedata

DSL attributes

Attribute
Description
Type

key

Unique reference data key used when performing query lookups

Object

data

Custom data to be stored outside of the Map structure

Object

Key methods

Key

These methods allow you to set and retrieve a unique lookup key for the contextual data. If a null value is passed, it will be converted to a String null.

// Set lookup key
public void setKey(Object key);

// Get lookup key
public Object getKey();

Data

These methods enable you to associate and retrieve custom data with the contextual data object. Again, if a null value is passed, it is converted to a String null.

// Set custom data object
public void setData(Object data);

// Get the custom data object
public Object getData();

Last updated

Was this helpful?