All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.basex.query.func.fn.FnLocalNameFromQName Maven / Gradle / Ivy

There is a newer version: 11.3
Show newest version
package org.basex.query.func.fn;

import org.basex.query.*;
import org.basex.query.expr.*;
import org.basex.query.func.*;
import org.basex.query.value.item.*;
import org.basex.query.value.seq.*;
import org.basex.query.value.type.*;
import org.basex.util.*;

/**
 * Function implementation.
 *
 * @author BaseX Team 2005-22, BSD License
 * @author Christian Gruen
 */
public final class FnLocalNameFromQName extends StandardFunc {
  @Override
  public Item item(final QueryContext qc, final InputInfo ii) throws QueryException {
    final QNm qname = toQNm(exprs[0], qc, true);
    return qname == null ? Empty.VALUE : AtomType.NCNAME.cast(Str.get(qname.local()), qc, sc, info);
  }

  @Override
  protected Expr opt(final CompileContext cc) {
    return optFirst();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy