List of usage examples for org.apache.commons.lang3 Validate isAssignableFrom
public static void isAssignableFrom(final Class<?> superType, final Class<?> type, final String message, final Object... values)
From source file:org.datalorax.populace.core.populate.mutator.ensure.EnsureListElementsNotNullMutator.java
@SuppressWarnings("unchecked") private static List<Object> ensureList(final Type type, final Object currentValue) { Validate.isAssignableFrom(List.class, TypeUtils.getRawType(type, null), "Unsupported type %s", type); return (List<Object>) currentValue; }