Comparar Nos de duas listas XML usando Document e Element

Pessoal, enrosquei…

Preciso comparar o seguinte conteudo:
00-0000-0000av80fiat

Com esse:
11-1111-1111 av80fiatvermelha

Estou desse jeito:

public List compareXml(Document oldXml, Document newXml) throws Exception{
	
	Element oldRoot = oldXml.getRootElement();
	Element newRoot = newXml.getRootElement();
		
	List oldList = oldRoot.getChildren();
	List newList = newRoot.getChildren();
	
	for (int i = 0; i < oldList.size(); i++) {
		Element elmt = (Element) oldList.get(i);

Alguem ja fez algo parecido e pode me dar uma ajudinha?
Obrigado!