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.jopendocument.util.cc.Transformer.java

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

    public static final <N> ITransformer<N, N> nopTransformer() {
        return new ITransformerWrapper<>(TransformerUtils.nopTransformer());
    }

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

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

    public Object transform(Object input) {

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

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

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

From source file edu.isistan.carcha.util.Entity2String.java

/**
 * The Class Entity2String.
 */
public class Entity2String implements Transformer {

    /* (non-Javadoc)

From source file info.evanchik.eclipse.karaf.core.features.internal.ElementTransformer.java

/**
 * @author Stephen Evanchik (evanchsa@gmail.com)
 *
 */
public class ElementTransformer implements Transformer {

From source file org.broadleafcommerce.common.util.TypedTransformer.java

/**
 * A class that provides for a typed transformer.
 * 
 * @author Andre Azzolini (apazzolini)
 * @see Transformer
 * @param <K> the type of the value that will be returned by the transformer

From source file org.xlcloud.console.virtualClusters.controllers.wizard.transformers.ApplicationIdTransformer.java

/**
 * Transformer class used to retrieve id from the application.
 * @author "Konrad Krl", AMG.net
 */
public class ApplicationIdTransformer implements Transformer {

From source file org.beanfuse.collection.transformers.PropertyTransformer.java

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

From source file com.phoenixst.plexus.util.ParentEdgeGetter.java

/**
 *  A <code>Transformer</code> which when given a node, returns the
 *  parent <code>Edge</code> of that node, specified by an
 *  <code>OrientedForest</code>.
 *
 *  @version    $Revision: 1.9 $

From source file org.xlcloud.console.virtualClusters.controllers.wizard.transformers.VirtualClusterDefinitionTypeTransformer.java

/**
 * Transformer class used to retrieve type from virtual cluster definition.
 * @author "Konrad Krl", AMG.net
 */
public class VirtualClusterDefinitionTypeTransformer implements Transformer {