Java Doc for Query.java in  » JMX » mx4j » javax » management » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » JMX » mx4j » javax.management 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.management.Query

Query
public class Query (Code)
Factory class for constructing query expressions.
version:
   $Revision: 1.9 $


Field Summary
final public static  intDIV
    
final public static  intEQ
    
final public static  intGE
    
final public static  intGT
    
final public static  intLE
    
final public static  intLT
    
final public static  intMINUS
    
final public static  intPLUS
    
final public static  intTIMES
    


Method Summary
public static  QueryExpand(QueryExp q1, QueryExp q2)
     Returns a query expression for the result of the AND operation on the two given expressions.
public static  QueryExpanySubString(AttributeValueExp a, StringValueExp s)
     Returns a query expression for the result of the match, as contained string, between the given attribute value and the string pattern.
public static  AttributeValueExpattr(String name)
     Returns the expression value that represent the value of an attribute of a generic MBean.
public static  AttributeValueExpattr(String className, String name)
     Returns the expression value that represent the value of an attribute of an MBean of the specified class.
public static  QueryExpbetween(ValueExp v1, ValueExp v2, ValueExp v3)
    
public static  AttributeValueExpclassattr()
     Returns the expression value that represent the class name of an MBean.
public static  ValueExpdiv(ValueExp value1, ValueExp value2)
    
public static  QueryExpeq(ValueExp v1, ValueExp v2)
     Returns a query expression for the result of v1 EQUAL v2.
public static  QueryExpfinalSubString(AttributeValueExp a, StringValueExp s)
     Returns a query expression for the result of the match, as final string, between the given attribute value and the string pattern.
public static  QueryExpgeq(ValueExp v1, ValueExp v2)
     Returns a query expression for the result of v1 GREATER-THAN-OR-EQUAL v2.
public static  QueryExpgt(ValueExp v1, ValueExp v2)
     Returns a query expression for the result of v1 GREATER-THAN v2.
public static  QueryExpin(ValueExp val, ValueExp valueList)
     Returns a query expression for the result of val being present as one element of the given array.
public static  QueryExpinitialSubString(AttributeValueExp a, StringValueExp s)
     Returns a query expression for the result of the match, as initial string, between the given attribute value and the string pattern.
public static  QueryExpleq(ValueExp v1, ValueExp v2)
     Returns a query expression for the result of v1 LESS-THAN-OR-EQUAL v2.
public static  QueryExplt(ValueExp v1, ValueExp v2)
     Returns a query expression for the result of v1 LESS-THAN v2.
public static  QueryExpmatch(AttributeValueExp a, StringValueExp s)
     Returns a query expression for the result of the wildcard match between the given attribute value and the string pattern.
public static  ValueExpminus(ValueExp value1, ValueExp value2)
    
public static  QueryExpnot(QueryExp queryExp)
     Returns a query expression for the result of the NOT operation on the given expression.
public static  QueryExpor(QueryExp q1, QueryExp q2)
     Returns a query expression for the result of the OR operation on the two given expressions.
public static  ValueExpplus(ValueExp value1, ValueExp value2)
    
public static  ValueExptimes(ValueExp value1, ValueExp value2)
    
public static  StringValueExpvalue(String val)
     Returns the expression value that represent the given string.
public static  ValueExpvalue(Number val)
     Returns the expression value that represent the given number.
public static  ValueExpvalue(int val)
     Returns the expression value that represent the given number.
public static  ValueExpvalue(long val)
     Returns the expression value that represent the given number.
public static  ValueExpvalue(float val)
     Returns the expression value that represent the given number.
public static  ValueExpvalue(double val)
     Returns the expression value that represent the given number.
public static  ValueExpvalue(boolean val)
     Returns the expression value that represent the given boolean.

Field Detail
DIV
final public static int DIV(Code)



EQ
final public static int EQ(Code)



GE
final public static int GE(Code)



GT
final public static int GT(Code)



LE
final public static int LE(Code)



LT
final public static int LT(Code)



MINUS
final public static int MINUS(Code)



PLUS
final public static int PLUS(Code)



TIMES
final public static int TIMES(Code)





Method Detail
and
public static QueryExp and(QueryExp q1, QueryExp q2)(Code)
Returns a query expression for the result of the AND operation on the two given expressions.



anySubString
public static QueryExp anySubString(AttributeValueExp a, StringValueExp s)(Code)
Returns a query expression for the result of the match, as contained string, between the given attribute value and the string pattern.



attr
public static AttributeValueExp attr(String name)(Code)
Returns the expression value that represent the value of an attribute of a generic MBean.



attr
public static AttributeValueExp attr(String className, String name)(Code)
Returns the expression value that represent the value of an attribute of an MBean of the specified class.



between
public static QueryExp between(ValueExp v1, ValueExp v2, ValueExp v3)(Code)
Returns a query expression for the result of v1 LESS-THAN-OR-EQUAL v2 LESS-THAN-OR-EQUAL v3



classattr
public static AttributeValueExp classattr()(Code)
Returns the expression value that represent the class name of an MBean.



div
public static ValueExp div(ValueExp value1, ValueExp value2)(Code)
Returns a expression value for the result of value1 DIVIDED value2



eq
public static QueryExp eq(ValueExp v1, ValueExp v2)(Code)
Returns a query expression for the result of v1 EQUAL v2.



finalSubString
public static QueryExp finalSubString(AttributeValueExp a, StringValueExp s)(Code)
Returns a query expression for the result of the match, as final string, between the given attribute value and the string pattern.



geq
public static QueryExp geq(ValueExp v1, ValueExp v2)(Code)
Returns a query expression for the result of v1 GREATER-THAN-OR-EQUAL v2.



gt
public static QueryExp gt(ValueExp v1, ValueExp v2)(Code)
Returns a query expression for the result of v1 GREATER-THAN v2.



in
public static QueryExp in(ValueExp val, ValueExp valueList)(Code)
Returns a query expression for the result of val being present as one element of the given array.



initialSubString
public static QueryExp initialSubString(AttributeValueExp a, StringValueExp s)(Code)
Returns a query expression for the result of the match, as initial string, between the given attribute value and the string pattern.



leq
public static QueryExp leq(ValueExp v1, ValueExp v2)(Code)
Returns a query expression for the result of v1 LESS-THAN-OR-EQUAL v2.



lt
public static QueryExp lt(ValueExp v1, ValueExp v2)(Code)
Returns a query expression for the result of v1 LESS-THAN v2.



match
public static QueryExp match(AttributeValueExp a, StringValueExp s)(Code)
Returns a query expression for the result of the wildcard match between the given attribute value and the string pattern.



minus
public static ValueExp minus(ValueExp value1, ValueExp value2)(Code)
Returns a expression value for the result of value1 MINUS value2



not
public static QueryExp not(QueryExp queryExp)(Code)
Returns a query expression for the result of the NOT operation on the given expression.



or
public static QueryExp or(QueryExp q1, QueryExp q2)(Code)
Returns a query expression for the result of the OR operation on the two given expressions.



plus
public static ValueExp plus(ValueExp value1, ValueExp value2)(Code)
Returns a expression value for the result of value1 PLUS value2



times
public static ValueExp times(ValueExp value1, ValueExp value2)(Code)
Returns a expression value for the result of value1 TIMES value2



value
public static StringValueExp value(String val)(Code)
Returns the expression value that represent the given string.



value
public static ValueExp value(Number val)(Code)
Returns the expression value that represent the given number.



value
public static ValueExp value(int val)(Code)
Returns the expression value that represent the given number.



value
public static ValueExp value(long val)(Code)
Returns the expression value that represent the given number.



value
public static ValueExp value(float val)(Code)
Returns the expression value that represent the given number.



value
public static ValueExp value(double val)(Code)
Returns the expression value that represent the given number.



value
public static ValueExp value(boolean val)(Code)
Returns the expression value that represent the given boolean.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.