193194195196197198199
/** * Returns the service that can coerce between different types. */ public static TypeCoercer build(Collection<CoercionTuple> configuration) { return new TypeCoercerImpl(configuration); }
192193194195196197198
/** * Returns the service that can coerce between different types. */ public static TypeCoercer buildTypeCoercer(Collection<CoercionTuple> configuration) { return new TypeCoercerImpl(configuration); }