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

io.sirix.node.interfaces.immutable.ImmutableNameNode Maven / Gradle / Ivy

package io.sirix.node.interfaces.immutable;

import io.brackit.query.atomic.QNm;

/**
 * Immutable node with a name (element, attribute, namespace, PI...).
 * 
 * @author Johannes Lichtenberger
 *
 */
public interface ImmutableNameNode extends ImmutableNode {
  /**
   * Gets local name key of qualified name.
   * 
   * @return local name key of qualified name
   */
  int getLocalNameKey();

  /**
   * Gets prefix key of qualified name.
   * 
   * @return prefix key of qualified name
   */
  int getPrefixKey();

  /**
   * Gets key of the URI.
   * 
   * @return URI key
   */
  int getURIKey();

  /**
   * Get a path node key.
   * 
   * @return path node key
   */
  long getPathNodeKey();

  /**
   * Get the {@link QNm} associated with the node.
   * 
   * @return the {@link QNm} of the node
   */
  QNm getName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy