java.lang.Object | |
↳ | com.microstrategy.utils.serialization.FlatStateSerializer |
This class is used to build a string representing object state.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
FlatStateSerializer() | |||||||||||
FlatStateSerializer(StringBuffer _buf) |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
final void |
addBoolean(boolean value)
Adds boolean value to the state string.
| ||||||||||
final void |
addBooleanObj(Boolean value)
Adds boolean value to the state string.
| ||||||||||
final void |
addInt(int value)
Adds integer value to the state string.
| ||||||||||
void |
addObject(Persistable ob, int stateFlag)
Adds embedded object state to the state string.
| ||||||||||
void |
addObject(Persistable ob)
Adds embedded object state to the state string.
| ||||||||||
void |
addObjects(Enumeration objects)
Adds the embedded object collection state to the state string.
| ||||||||||
void |
addObjects(Collection objects)
Adds the embedded object collection state to the state string.
| ||||||||||
void |
addStr(String value)
Adds string value to the state string.
| ||||||||||
void |
addValues(Collection values)
Adds the embedded values collection to the state string.
| ||||||||||
void |
addValues(Enumeration values)
Adds the embedded values collection to the state string.
| ||||||||||
String |
getState()
Returns the object state string.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Adds boolean value to the state string.
value | boolean value |
---|
Adds boolean value to the state string.
value | boolean value |
---|
Adds integer value to the state string.
value | integer value |
---|
Adds embedded object state to the state string.
ob | embedded object |
---|---|
stateFlag | from EnumWebStateFlags
|
Adds embedded object state to the state string.
ob | embedded object |
---|
Adds the embedded object collection state to the state string.
objects | an enumeration of embedded objects |
---|
Adds the embedded object collection state to the state string.
objects | an embedded object collection |
---|
Adds string value to the state string.
value | string value |
---|
Adds the embedded values collection to the state string.
values | a collection of values |
---|
Adds the embedded values collection to the state string.
values | an enumeration of values |
---|
Returns the object state string.