Update Scalar
Convenience Methods
Declaration
voidupdate
(
java.lang.String fieldName,
scalar_type
data)
throws TibrvException
voidupdate
(
java.lang.String fieldName,
scalar_type
data,
int fieldId)
throws TibrvException
voidupdateU
bits
(
java.lang.String fieldName,
scalar_type
data)
throws TibrvException
voidupdateU
bits
(
java.lang.String fieldName,
scalar_type
data,
int fieldId)
throws TibrvException
Purpose
Update a field containing a scalar value.
Method Forms
The convenience methods named update
()
determine the field type from the numeric type of the data.
The convenience methods named updateU
nn
()
update unsigned integer fields, discarding the sign bit of a Java integer data value.
Method Name |
Java Data Type |
Field Type |
Type Description |
|
|
|
boolean |
|
|
|
32-bit floating point |
|
|
|
64-bit floating point |
|
|
|
8-bit integer |
|
|
|
16-bit integer |
|
|
|
32-bit integer |
|
|
|
64-bit integer |
|
|
|
8-bit unsigned integer |
|
|
|
16-bit unsigned integer |
|
|
|
32-bit unsigned integer |
|
|
|
64-bit unsigned integer |
Parameter |
Description |
|
Update a field with this data value. It is illegal to add or update a field with |
|
Update a field with this name. When absent, locate the field by identifier only. |
|
Update a field with this identifier. All field identifiers must be unique within each message. Zero is a special value, indicating no identifier. It is illegal to add a field that has both a |