Grails / GORM "en" criterios

¿Es posible hacer un criterio "in" usando los criterios GORM? Estoy buscando el equivalente del siguiente SQL

select * from Person where age in (20,21,22);

Si fuera posible, supongo que la sintaxis sería algo así como:

def results = Person.withCriteria {
    in "age", [20, 21, 22]
}