These are the consistency levels defined right now :
ANY, ONE ,
TWO ,
THREE ,
QUORUM ,
ALL ,
LOCAL_QUORUM,
EACH_QUORUM ,
SERIAL ,
LOCAL_SERIAL ,
LOCAL_ONE .
If you are talking about using other than these, I don't think there is a pluggable solution for that right now , where you define number of nodes that will participate to assert required consistency.
If you want to use any of the above defined consistencies ,
an example would be :
Select s = QueryBuilder.select().from("employee");
s.where(QueryBuilder.eq("id", "234"));
s.setConsistencyLevel(ConsistencyLevel.QUORUM) ;