Currently, Fixture can customize fields by omitting them (leaving them null):
fixture().build(MyClass.class).without("field").create();
It would be helpful to also be able to omit any field with the specified class:
fixture().build(MyClass.class).without(BigDecimal.class).create();