com.iopipe.generic.__IdentityConvert__ Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iopipe Show documentation
Show all versions of iopipe Show documentation
This project provides analytics and distributed tracing for event-driven
applications running on AWS Lambda using the IOpipe service.
The newest version!
package com.iopipe.generic;
import java.lang.reflect.Type;
/**
* This is the identity conversion which converts to objects without performing
* any kind of translation.
*
* @since 2018/08/23
*/
final class __IdentityConvert__
extends ObjectTranslator
{
/**
* Initializes the translator.
*
* @param __f The from type.
* @param __t The to type.
* @since 2018/08/23
*/
__IdentityConvert__(Type __f, Type __t)
{
super(__f, __t);
}
/**
* {@inheritDoc}
* @since 2018/08/23
*/
@Override
public final Object translate(Object __f)
{
return __f;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy