static L findConceptsWhere(Class c, O... params) { ret filterConcepts(list(c), expandParams(c, params)); } static L findConceptsWhere(S c, O... params) { ret filterConcepts(list(c), params); } static L findConceptsWhere(Concepts concepts, Class c, O... params) { ret filterConcepts(concepts.list(c), expandParams(c, params)); } static L findConceptsWhere(Concepts concepts, S c, O... params) { ret filterConcepts(concepts.list(c), params); }