I have the below code which works:
if(aDBCursor.hasNext()){ ...
Sorry for very dumb question. I'm using Morphia 1.00. Have some entity:
@Entity("Vacancy") public class Vacancy { @Id private ObjectId id; @Version long version; private String title;
Vacancy vacancy1 = new ...