Example usage for org.apache.commons.collections TransformerUtils nopTransformer

List of usage examples for org.apache.commons.collections TransformerUtils nopTransformer

Introduction

In this page you can find the example usage for org.apache.commons.collections TransformerUtils nopTransformer.

Prototype

public static Transformer nopTransformer() 

Source Link

Document

Gets a transformer that returns the input object.

Usage

From source file:org.jopendocument.util.cc.Transformer.java

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