Hi Dmitry,The ValueMap interface handles type coercion automatically, you just need to tell it what to do:String[] values = props.get("jcr:title", String[].class); // will return null if there's no property named "jcr:title"ORString[] values = props.get("jcr:title", new String[0]); // will return an...