вы можете получить документы по их имени (что на самом деле здесь не применимо):
DocumentReference docRef = db.collection("Users").document("patryk");
или вы можете запросить значения, содержащиеся в документе (которые могут ответить на ваш вопрос):
/* create a reference to the Users collection */
CollectionReference users = db.collection("Users");
/* create a query against the collection */
Query query = users.whereEqualTo("name", "patryk");
остальное - одна и та же процедура, в обоих случаях:
/* asynchronously retrieve the document */
ApiFuture<DocumentSnapshot> future = docRef.get();
/* future.get() blocks on response */
DocumentSnapshot document = future.get();
if (document.exists()) {
System.out.println("Document data: " + document.getData());
} else {
System.out.println("No such document!");
}