class Convert { public static Collection up (LinkedList xs) { return (Collection)xs; } public static LinkedList down (Collection xs) { if (xs instanceof LinkedList) return (LinkedList)xs; else throw new ConvertException(); } }