org.apache.commons.collections.Transformer.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.commons.collections.Transformer.java

Source

package org.apache.commons.collections;

public interface Transformer {
    Object transform(Object input);
}