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.kuali.mobility.events.util.CategoryTransform.java

/**
 * @author Aniruddha Jani <ajani@vivantech.com>
 */
public class CategoryTransform implements Transformer {

    @Override

From source file org.kuali.mobility.events.util.EventTransform.java

public class EventTransform implements Transformer {

    @Override
    public Object transform(Object obj) {
        EventImpl proxy = null;

From source file org.kuali.mobility.events.util.DayTransform.java

public class DayTransform implements Transformer {

    @Override
    public Object transform(Object obj) {
        DayImpl proxy = null;

From source file org.kuali.mobility.news.util.NewsSourceTransform.java

/**
 * @author Kuali Mobility Team <mobility.collab@kuali.org>
 */
public class NewsSourceTransform implements Transformer {
    private static final NewsServiceSort NEWS_SERVICE_SORT = new NewsServiceSort();

From source file org.pentaho.platform.plugin.services.security.userrole.ldap.transform.SearchResultToAttrValueList.java

/**
 * Extracts the value of the token <code>tokenName</code> from the attribute <code>attributeName</code>. Ignores
 * attribute value if value is not of type <code>String</code>. Returns the entire attribute value if
 * <code>tokenName</code> is not specified.
 * <p>
 * <strong>Note: This transformer can produce more than one output (in the form of a collection) per single input. Any

From source file org.apache.cocoon.transformation.TagTransformer.java

/**
 * Transformer which implements the taglib functionalty.
 *
 * <p>Transformer processes incoming SAX events and for each element it tries to
 * find {@link Tag} component with matching namespace and tag name.
 *