Dealing with Querybuilder results
Hi, Newbie question here. When using the query builder interface and get a set of results. I use something like this:
for (Hit hit : result.getHits()) { ValueMap props = hit.getProperties(); String title = props.get("jcr:title").toString(); }However if the property is an array (such as props.get("cq:tags") ), it returns what appears to be a generic object. How do I extract the string[] value from that object? to get the contents?
Thanks,
- Dmitry