Java tutorial
//package com.java2s; //License from project: Apache License import java.util.Collections; import java.util.List; public class Main { public static List<?> toList(Object obj) { if (obj instanceof List) { return (List<?>) obj; } else if (obj == null) { return Collections.emptyList(); } else { return Collections.singletonList(obj); } } }