gw.lang.parser.coercers.BigIntegerCoercer Maven / Gradle / Ivy
/*
* Copyright 2014 Guidewire Software, Inc.
*/
package gw.lang.parser.coercers;
import gw.config.CommonServices;
import gw.lang.reflect.IType;
public class BigIntegerCoercer extends StandardCoercer
{
private static final BigIntegerCoercer INSTANCE = new BigIntegerCoercer();
public Object coerceValue( IType typeToCoerceTo, Object value )
{
return CommonServices.getCoercionManager().makeBigIntegerFrom( value );
}
public static BigIntegerCoercer instance()
{
return INSTANCE;
}
@Override
public int getPriority( IType to, IType from )
{
if( isCoercingDimensionWithSameType( to, from ) )
{
// must be higher priority than blind boxed coercion
return 3;
}
return super.getPriority( to, from );
}
}