⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 query.html

📁 j2ee api,很好的api。我这现在有
💻 HTML
📖 第 1 页 / 共 5 页
字号:
<A NAME="geq(javax.management.ValueExp, javax.management.ValueExp)"><!-- --></A><H3>geq</H3><PRE>public static <A HREF="../../javax/management/QueryExp.html" title="interface in javax.management">QueryExp</A> <B>geq</B>(<A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;v1,                           <A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;v2)</PRE><DL><DD>Returns a query expression that represents a "greater than or equal to" constraint on two values.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>v1</CODE> - A value expression.<DD><CODE>v2</CODE> - Another value expression.<DT><B>Returns:</B><DD>A "greater than or equal to" constraint on the arguments.</DL></DD></DL><HR><A NAME="leq(javax.management.ValueExp, javax.management.ValueExp)"><!-- --></A><H3>leq</H3><PRE>public static <A HREF="../../javax/management/QueryExp.html" title="interface in javax.management">QueryExp</A> <B>leq</B>(<A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;v1,                           <A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;v2)</PRE><DL><DD>Returns a query expression that represents a "less than or equal to" constraint on two values.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>v1</CODE> - A value expression.<DD><CODE>v2</CODE> - Another value expression.<DT><B>Returns:</B><DD>A "less than or equal to" constraint on the arguments.</DL></DD></DL><HR><A NAME="lt(javax.management.ValueExp, javax.management.ValueExp)"><!-- --></A><H3>lt</H3><PRE>public static <A HREF="../../javax/management/QueryExp.html" title="interface in javax.management">QueryExp</A> <B>lt</B>(<A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;v1,                          <A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;v2)</PRE><DL><DD>Returns a query expression that represents a "less than" constraint on two values.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>v1</CODE> - A value expression.<DD><CODE>v2</CODE> - Another value expression.<DT><B>Returns:</B><DD>A "less than" constraint on the arguments.</DL></DD></DL><HR><A NAME="eq(javax.management.ValueExp, javax.management.ValueExp)"><!-- --></A><H3>eq</H3><PRE>public static <A HREF="../../javax/management/QueryExp.html" title="interface in javax.management">QueryExp</A> <B>eq</B>(<A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;v1,                          <A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;v2)</PRE><DL><DD>Returns a query expression that represents an equality constraint on two values.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>v1</CODE> - A value expression.<DD><CODE>v2</CODE> - Another value expression.<DT><B>Returns:</B><DD>A "equal to" constraint on the arguments.</DL></DD></DL><HR><A NAME="between(javax.management.ValueExp, javax.management.ValueExp, javax.management.ValueExp)"><!-- --></A><H3>between</H3><PRE>public static <A HREF="../../javax/management/QueryExp.html" title="interface in javax.management">QueryExp</A> <B>between</B>(<A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;v1,                               <A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;v2,                               <A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;v3)</PRE><DL><DD>Returns a query expression that represents the constraint that one value is between two other values.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>v1</CODE> - A value expression that is "between" v2 and v3.<DD><CODE>v2</CODE> - Value expression that represents a boundary of the constraint.<DD><CODE>v3</CODE> - Value expression that represents a boundary of the constraint.<DT><B>Returns:</B><DD>The constraint that v1 lies between v2 and v3.</DL></DD></DL><HR><A NAME="match(javax.management.AttributeValueExp, javax.management.StringValueExp)"><!-- --></A><H3>match</H3><PRE>public static <A HREF="../../javax/management/QueryExp.html" title="interface in javax.management">QueryExp</A> <B>match</B>(<A HREF="../../javax/management/AttributeValueExp.html" title="class in javax.management">AttributeValueExp</A>&nbsp;a,                             <A HREF="../../javax/management/StringValueExp.html" title="class in javax.management">StringValueExp</A>&nbsp;s)</PRE><DL><DD>Returns a query expression that represents a matching constraint on a string argument. The matching syntax is consistent with file globbing: Supports "?", "*", "[", each of which may be escaped with "\"; Character classes may use "!" for negation and "-" for range. (* for any character sequence ? for a single arbitrary character [...] for a character sequence). For example: a*b?c would match a string starting with the character a, followed by any number of characters, followed by a b, any single character, and a c.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>a</CODE> - An attribute expression<DD><CODE>s</CODE> - A string value expression representing a matching constraint<DT><B>Returns:</B><DD>A query expression that represents the matching constraint on the string argument.</DL></DD></DL><HR><A NAME="attr(java.lang.String)"><!-- --></A><H3>attr</H3><PRE>public static <A HREF="../../javax/management/AttributeValueExp.html" title="class in javax.management">AttributeValueExp</A> <B>attr</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name)</PRE><DL><DD><p>Returns a new attribute expression.</p> <p>Evaluating this expression for a given <code>objectName</code> includes performing <A HREF="../../javax/management/MBeanServer.html#getAttribute(javax.management.ObjectName, java.lang.String)"><CODE>MBeanServer.getAttribute(objectName, name)</CODE></A>.</p><P><DD><DL><DT><B>Parameters:</B><DD><CODE>name</CODE> - The name of the attribute.<DT><B>Returns:</B><DD>An attribute expression for the attribute named name.</DL></DD></DL><HR><A NAME="attr(java.lang.String, java.lang.String)"><!-- --></A><H3>attr</H3><PRE>public static <A HREF="../../javax/management/AttributeValueExp.html" title="class in javax.management">AttributeValueExp</A> <B>attr</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;className,                                     <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name)</PRE><DL><DD><p>Returns a new qualified attribute expression.</p> <p>Evaluating this expression for a given <code>objectName</code> includes performing <A HREF="../../javax/management/MBeanServer.html#getObjectInstance(javax.management.ObjectName)"><CODE>MBeanServer.getObjectInstance(objectName)</CODE></A> and <A HREF="../../javax/management/MBeanServer.html#getAttribute(javax.management.ObjectName, java.lang.String)"><CODE>MBeanServer.getAttribute(objectName, name)</CODE></A>.</p><P><DD><DL><DT><B>Parameters:</B><DD><CODE>className</CODE> - The name of the class possessing the attribute.<DD><CODE>name</CODE> - The name of the attribute.<DT><B>Returns:</B><DD>An attribute expression for the attribute named name.</DL></DD></DL><HR><A NAME="classattr()"><!-- --></A><H3>classattr</H3><PRE>public static <A HREF="../../javax/management/AttributeValueExp.html" title="class in javax.management">AttributeValueExp</A> <B>classattr</B>()</PRE><DL><DD><p>Returns a new class attribute expression which can be used in any Query call that expects a ValueExp.</p> <p>Evaluating this expression for a given <code>objectName</code> includes performing <A HREF="../../javax/management/MBeanServer.html#getObjectInstance(javax.management.ObjectName)"><CODE>MBeanServer.getObjectInstance(objectName)</CODE></A>.</p><P><DD><DL><DT><B>Returns:</B><DD>A class attribute expression.</DL></DD></DL><HR><A NAME="not(javax.management.QueryExp)"><!-- --></A><H3>not</H3><PRE>public static <A HREF="../../javax/management/QueryExp.html" title="interface in javax.management">QueryExp</A> <B>not</B>(<A HREF="../../javax/management/QueryExp.html" title="interface in javax.management">QueryExp</A>&nbsp;queryExp)</PRE><DL><DD>Returns a constraint that is the negation of its argument.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>queryExp</CODE> - The constraint to negate.<DT><B>Returns:</B><DD>A negated constraint.</DL></DD></DL><HR><A NAME="in(javax.management.ValueExp, javax.management.ValueExp[])"><!-- --></A><H3>in</H3><PRE>public static <A HREF="../../javax/management/QueryExp.html" title="interface in javax.management">QueryExp</A> <B>in</B>(<A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>&nbsp;val,                          <A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A>[]&nbsp;valueList)</PRE><DL><DD>Returns an expression constraining a value to be one of an explicit list.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>val</CODE> - A value to be constrained.<DD><CODE>valueList</CODE> - An array of ValueExps.<DT><B>Returns:</B><DD>A QueryExp that represents the constraint.</DL></DD></DL><HR><A NAME="value(java.lang.String)"><!-- --></A><H3>value</H3><PRE>public static <A HREF="../../javax/management/StringValueExp.html" title="class in javax.management">StringValueExp</A> <B>value</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;val)</PRE><DL><DD>Returns a new string expression.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>val</CODE> - The string value.<DT><B>Returns:</B><DD>A ValueExp object containing the string argument.</DL></DD></DL><HR><A NAME="value(java.lang.Number)"><!-- --></A><H3>value</H3><PRE>public static <A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A> <B>value</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Number.html" title="class or interface in java.lang">Number</A>&nbsp;val)</PRE><DL><DD>Returns a numeric value expression that can be used in any Query call that expects a ValueExp.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>val</CODE> - An instance of Number.<DT><B>Returns:</B><DD>A ValueExp object containing the argument.</DL></DD></DL><HR><A NAME="value(int)"><!-- --></A><H3>value</H3><PRE>public static <A HREF="../../javax/management/ValueExp.html" title="interface in javax.management">ValueExp</A> <B>value</B>(int&nbsp;val)</PRE><DL><DD>Returns a numeric value expression that can be used in any Query call that expects a ValueExp.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>val</CODE> - An int value.<DT><B>Returns:</B><DD>A ValueExp object containing the argument.</DL></DD></DL><HR><A NAME="value(long)"><!-- --></A><H3>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -