Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


Package javax.xml.xpath

Java 5.0

This
package defines types for the evaluation
of XPath expressions in the context of an XML document. XPath is a
language for describing a "path" to
a node or set of nodes within an XML document. Details of the XPath
grammar are beyond the scope of this reference.

A typical use of this package begins with the
XPathFactory, an instance of which is used to
create an XPath object. After configuring the
XPath object as desired, you can use it to
evaluate XPath expressions directly or to compile XPath expressions
into XPathExpression objects for later use.


Interfaces


public interface

XPath ;
public interface

XPathExpression ;
public interface

XPathFunction ;
public interface

XPathFunctionResolver ;
public interface

XPathVariableResolver ;

Classes


public class

XPathConstants ;
public abstract class

XPathFactory ;

Exceptions


public class

XPathException extends Exception;
public class

XPathExpressionException extends XPathException;
public class

XPathFunctionException extends XPathExpressionException;
public class

XPathFactoryConfigurationException extends XPathException;


    / 1191