Here you can find the source of clone(final N node)
@SuppressWarnings("unchecked") private static <N extends Node> N clone(final N node)
//package com.java2s; //License from project: Apache License import org.w3c.dom.Node; public class Main { @SuppressWarnings("unchecked") private static <N extends Node> N clone(final N node) { return (N) node.cloneNode(true); }/*from w w w . ja v a 2 s .c o m*/ }