Document.getProperties() for POJO values

Hi @vladoatanasov,

thank you, interesting approaches, I will try them out.

But one warning from my side: cblite does not always return a LinkedHashMap! If you read the document from the database, update the document properties and save them in a new revision you will get the original property object and not the LinkedHashMap back next time you call getProperties() on the updated document as long as you don’t close the database.

Which means you have to find out what type of property you received using instanceof.

Joerg