Example usage for org.apache.commons.collections Transformer interface-usage

List of usage examples for org.apache.commons.collections Transformer interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections Transformer interface-usage.

Usage

From source file org.beangle.commons.collection.transformers.PropertyTransformer.java

/**
 * bean???<br>
 * CollectionUtls.transform(collections,new PropertyTransformer('myAttr'))
 * 
 * @author chaostone
 */

From source file com.phoenixst.collections.InvertibleTransformer.java

/**
 *  An invertible <code>Transformer</code>.
 *
 *  <P>No equivalent interface exists in Jakarta Commons-Collections
 *  3.0.
 *

From source file org.sipfoundry.sipxconfig.search.IdentityToBean.java

/**
 * Tries to load bean from DataObjectSource if the object cannot be loaded catches exception and returns null
 * IdentityToBean
 */
public class IdentityToBean<T> implements Transformer {
    public static final Log LOG = LogFactory.getLog(IdentityToBean.class);

From source file org.openconcerto.utils.cc.Transformer.java

public abstract class Transformer<E, T>
        implements ITransformer<E, T>, IClosure<E>, org.apache.commons.collections.Transformer {

    private static final ITransformer<Object, Object> nopTransf = new ITransformer<Object, Object>() {
        @Override
        public Object transformChecked(Object input) {

From source file org.intermine.api.profile.TagMapper.java

/**
 * A class that handles transforming a list of tags into a list of strings of different types.
 * @author Alex Kalderimis
 *
 */
public final class TagMapper implements Transformer {

From source file com.sworddance.util.ReferenceTransformer.java

/**
 * unpeels all the wrapping {@link Reference}.
 * @author patmoore
 *
 */
public class ReferenceTransformer implements Transformer {

From source file org.examproject.tweet.util.DayBeginDateTransformer.java

/**
 * @author hiroxpepe
 */
public class DayBeginDateTransformer implements Transformer {

    ///////////////////////////////////////////////////////////////////////////

From source file org.examproject.tweet.util.DayEndDateTransformer.java

/**
 * @author hiroxpepe
 */
public class DayEndDateTransformer implements Transformer {

    ///////////////////////////////////////////////////////////////////////////

From source file org.examproject.tweet.util.MonthBeginDateTransformer.java

/**
 * @author hiroxpepe
 */
public class MonthBeginDateTransformer implements Transformer {

    ///////////////////////////////////////////////////////////////////////////

From source file org.xlcloud.console.menu.MenuGroupLabelTransformer.java

/**
 * Retrieves name from the menu group
 * @author Konrad Krl, AMG.net
 */
public class MenuGroupLabelTransformer implements Transformer {