java.lang.Object | |
↳ | com.microstrategy.utils.serialization.FlatStateTokenizer |
This class is used to parse object state string.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
FlatStateTokenizer(String pInput) |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
boolean |
hasMoreTokens()
Returns true if more tokens are available.
| ||||||||||
boolean |
nextBoolean()
Returns next element from the string converted to boolean.
| ||||||||||
Boolean |
nextBooleanObj()
Returns next element from the string converted to boolean.
| ||||||||||
int |
nextInt()
Returns next element from the string converted to integer.
| ||||||||||
String |
nextStr()
Returns next element from the state string.
| ||||||||||
FlatStateTokenizer |
nextTokenizer()
Creates a new tokenizer based on the next element in the state string.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Returns true if more tokens are available. This method shall be used for parsing collections.
Returns next element from the string converted to boolean.
Returns next element from the string converted to boolean.
Returns next element from the string converted to integer.
Returns next element from the state string. The element can be a simple value or a cortege. The method can also return null value indicating that corresponding string attribute or embedded object is null.
Creates a new tokenizer based on the next element in the state string. This method shall be used for parsing collections.