fields.put("PhoneNumber", "NumberLong(" + textField_4.getText() + ")");
recherche les documents où PhoneNumber a la valeur "NumberLong(" + textField_4.getText() + ")" de type text (Chaîne).
Veuillez essayer ceci.
fields.put("PhoneNumber", Long.parseLong(textField_4.getText()));
Et comme d'habitude, gérez les exceptions.