Groovy Documentation

org.gradle.api
[Java] Interface Transformer


public interface Transformer

A Transformer transforms objects of type T.

Parameters:
- The type of object which this transformer can transform.


Method Summary
T transform(T original)

Transforms the given object, and returns the transformed value.

 

Method Detail

transform

public T transform(T original)
Transforms the given object, and returns the transformed value.
Parameters:
original - The object to transform.
Returns:
The transformed object.


 

Groovy Documentation