krzysiek
krzysiek

Reputation: 465

Google App Engine Java low level Datastore API

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

Answers (2)

Eugene Kuleshov
Eugene Kuleshov

Reputation: 31795

A short answer is no. The setProperty method is taking Object value as parameter.

Upvotes: 2

krzysiek
krzysiek

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

Related Questions