public static class Cat { private String name; private Cat parent; Cat(String name, Cat parent) { this.name = name; this.parent = parent; }