Reputation: 465
Python's low level Datastore API provides possibilities to set typed properties. (like "setStringProperty".
Does Java low level Datastore API provide typed properties aswell?
Thanks in advance!
Upvotes: 0
Views: 177
Reputation: 31795
A short answer is no. The setProperty method is taking Object value as parameter.
Upvotes: 2
Reputation: 465
I think, I just use the setProperty with a typed Parameter (one of these: https://developers.google.com/appengine/docs/java/datastore/entities#Properties_and_Value_Types)...
Upvotes: 0