ListNode をインナークラスとしてクラス、二重リンク リストを作成しています。
public class DoublyLinkedList<Integer> {
/** Return a representation of this list: its values, with adjacent
* ones separated by ", ", "[" at the beginning, and "]" at the end. <br>
*
* E.g. for the list containing 6 3 8 in that order, return "[6, 3, 8]". */
public String toString() {
String s;
ListNode i = new ListNode(null, null, *new Integer(0)*);
エラーが発生し、タイプをインスタンス化できないのはなぜInteger
ですか?