\r\n

51Degrees Pipeline Java  4.4

51Degrees Pipeline for Java
  • fiftyone
  • pipeline
  • core
  • data
  • Data

fiftyone.pipeline.core.data.Data Interface Reference

Detailed Description

Represents a collection of property values.

Inheritance diagram for fiftyone.pipeline.core.data.Data:

[legend]

Public Member Functions

Object  get (String key)
Get the value stored using the specified key. More...
void  put (String key, Object value)
Set the value stored using the specified key. More...
void  populateFromMap (Map< String, Object > values)
Use the values in the specified map to populate this data instance. More...
Map< String, Object >  asKeyMap ()
Get the data contained in this instance as a read only Map. More...

Member Function Documentation

◆ populateFromMap()

void fiftyone.pipeline.core.data.Data.populateFromMap ( Map< String, Object >   values )

Use the values in the specified map to populate this data instance.

The data will not be cleared before the new values are added. The new values will overwrite old values if any exist with the same keys.

Parameters
values - the values to transfer to this data instance

Implemented in fiftyone.pipeline.core.data.DataBase.

◆ put()

void fiftyone.pipeline.core.data.Data.put ( String   key,
Object   value  
)

Set the value stored using the specified key.

Parameters
key - name of the property
value - value for the property

Implemented in fiftyone.pipeline.core.data.DataBase.