No you cannot. If you use indexNullAs, the null value gets replaced at indexing time and all knowledge of the value being null is lost.
My recommendation would be not to use indexNullAs to begin with. There are better alternatives, such as the exists predicate (which will only work if you don’t use indexNullAs).
and how can i use the combination exists and match for same property ?
i need both
pf.exists().field(property).matching(token).toPredicate();
and
pf.match().field(property).matching(token).toPredicate();