Java doc is
static class OnNeitherJndiNorProperty extends NoneOfNestedConditions {
when it should probably be
static class OnNeitherJndiNorProperty extends NoneNestedConditions {
Found after following javadoc links from @wilkinsona's Stack Overflow answer here.
Comment From: Sineaggi
Exact link to docs is https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/autoconfigure/condition/NoneNestedConditions.html only example of this class name in the code base is here https://github.com/spring-projects/spring-boot/blob/aef92b9295f62d008faa9ab79905a474bf3496f3/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/NoneNestedConditions.java#L29
Comment From: wilkinsona
Thanks, @Sineaggi. Closing in favour of #22207.