Uses of Interface
org.broadleafcommerce.common.util.TypedTransformer
Packages that use TypedTransformer
-
Uses of TypedTransformer in org.broadleafcommerce.common.util
Methods in org.broadleafcommerce.common.util with parameters of type TypedTransformerModifier and TypeMethodDescriptionstatic <T,O> ArrayList<T> BLCArrayUtils.collect(Object[] array, TypedTransformer<T> transformer) Similar to the CollectionUtils collect except that it works on an array instead of a Java Collectionstatic <T> Collection<T>BLCCollectionUtils.collect(Collection inputCollection, TypedTransformer<T> transformer) Delegates toCollectionUtils.collect(Collection, Transformer), but performs the necessary type coercion to allow the returned collection to be correctly casted based on the TypedTransformer.static <T> T[]BLCCollectionUtils.collectArray(Collection inputCollection, TypedTransformer<T> transformer, Class<T> clazz) The same asBLCCollectionUtils.collect(Collection, TypedTransformer)but returns an arraystatic <T> List<T>BLCCollectionUtils.collectList(Collection inputCollection, TypedTransformer<T> transformer) The same asBLCCollectionUtils.collect(Collection, TypedTransformer)but returns an ArrayListstatic <T,O> HashSet<T> BLCArrayUtils.collectSet(Object[] array, TypedTransformer<T> transformer) The same asBLCArrayUtils.collect(Object[], TypedTransformer)but returns a set.