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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


XPathExpressionjavax.xml.xpath

Java 5.0

If an XPath expression is to be evaluated more
than once, it is not efficient to call the XPath.evaluate(
) method repeatedly. Instead, compile the expression to an
XPathExpression using the XPath.compile(
) method and then evaluate it using one of the
evaluate( ) methods of
XPathExpression. The evaluate(
) methods of XPathExpression behave just
like the corresponding methods of XPath. See
XPath for details.

public interface

XPathExpression {
// Public Instance Methods
String

evaluate (org.xml.sax.InputSource

source )
throws XPathExpressionException;
String

evaluate (Object

item ) throws XPathExpressionException;
Object

evaluate (Object

item , javax.xml.namespace.QName

returnType )
throws XPathExpressionException;
Object

evaluate (org.xml.sax.InputSource

source , javax.xml.namespace.
QName

returnType ) throws XPathExpressionException;
}


Returned By


XPath.compile( )


    / 1191