Setting values for VALUES in SNARL

Hi,

Stardog's java client library enables us to bind parameters using parameter like

SelectQuery aQuery = aConn.select("select * where { ?s ?p ?o }");
aQuery.parameter("s", myIRIValue);

Now, let's say I want to bind ?s to more than one values similar to the situation that we usually use VALUES in sparql like the below query

select * where { VALUES ?s { <myIRIValue1> <myIRIValue2>} ?s ?p ?o };

my question is if there is a way to do it using the java client?

Thank you