JSONObject jsonQuery=null;
String queryString = query == null ? null : query.toString();
if (!StringUtils.isEmpty(queryString)){
// byte[] bytes = query.toBytes();
// jsonQuery = new FastJSONObject(new String(bytes,SenseiQuery.UTF_8_CHARSET));
jsonQuery = new FastJSONObject(queryString);
}
return buildQueryBuilder(jsonQuery, searchable);
}