104105106107108109110111112113114
if (metas == null) throw new XPathException(this, "No metadata found."); ValueSequence returnSeq = new ValueSequence(); for (Meta meta : metas.metas()) { returnSeq.add(new StringValue(meta.getKey())); } return returnSeq; } }