예제 #1
0
 /**
  * The typed value of a list-valued node is obtained by tokenizing the string value and applying
  * a mapping function to the sequence of tokens. This method implements the mapping function. It
  * is for internal use only. For details see {@link org.orbeon.saxon.expr.MappingFunction}
  */
 public SequenceIterator map(Item item) throws XPathException {
   try {
     return atomicType.getTypedValue(item.getStringValue(), resolver, nameChecker);
   } catch (ValidationException err) {
     throw new XPathException(err);
   }
 }