split()
split the property into a head and tail section. The head will contain the property up to the first '.' and tail the rest. If head is an indexed value it is further seperated into its actual value and index. For example, new PropertyNavigator("order[2].orderNumer").split()
will result into: getHead() == "order"
getIndex() == "2"
getTail() == "orderNumber"
|
|
|
|
|
|
|
|