There is Java API: http://morphia.googlecode.com/svn/site/morphia/apidocs/com/google/code/morphia/Morphia.html
class Morphia defines method like:
<T> T fromDBObject(Class<T> entityClass, com.mongodb.DBObject dbObject)
Can some one explain what <T> T and Class<T> means? Is the method returning a class of type T in a collection?
Another API on Inteface DataStore:
<T,V> Query<T> find(Class<T> clazz, String property, V value)
What <T,V> Query<T> means? Is the method returning an object of type Query that is then surrounded by collection `<T,V>` and `<T>`. This part is very confusing.
Is it correct to say whenever angle bracket (< > ) is involved, it always means a Java collection is involved?
Sorry I forgot to mark some content in this question as code otherwise SO was escaping changing entire meaning of the question and hence the 2 answers by @Vash and @fiver are in accordance to the question before this edit.
Thanks for pointing to some tutorials out there but please provide specifc answer from your expertise in Java generics to the question which will then help me to understand the tutorials better.