Please follow the given xml code below.

Consider a xml file with parameter and values like


<Book>
<Name>ABC</NAME>
<Value>123</Value>
</Book>
<book>
<Name>EFG</Name>
<Value>456</Value>
</book>
<bOOK>
<Name>XYZ</Name>
<Value>789</Name>
</bOOK>

In Java,
How can we write a single Xpath query to parse all the book blocks in single expression though they are in different case(Upper case/Lowercase).
Please let me know if anybody can help me with this.

Regards,
Vijay