Example usage for Java javax.management Query fields, constructors, methods, implement or subclass
The text is from its open source code.
QueryExp | and(QueryExp q1, QueryExp q2) Returns a query expression that is the conjunction of two other query expressions. |
AttributeValueExp | attr(String name) Returns a new attribute expression. |
QueryExp | isInstanceOf(StringValueExp classNameValue) Returns a query expression that represents an inheritance constraint on an MBean class. |
QueryExp | match(AttributeValueExp a, StringValueExp s) Returns a query expression that represents a matching constraint on a string argument. |
StringValueExp | value(String val) Returns a new string expression. |
ValueExp | value(Number val) Returns a numeric value expression that can be used in any Query call that expects a ValueExp. |
ValueExp | value(int val) Returns a numeric value expression that can be used in any Query call that expects a ValueExp. |
ValueExp | value(long val) Returns a numeric value expression that can be used in any Query call that expects a ValueExp. |
ValueExp | value(float val) Returns a numeric value expression that can be used in any Query call that expects a ValueExp. |
ValueExp | value(double val) Returns a numeric value expression that can be used in any Query call that expects a ValueExp. |
ValueExp | value(boolean val) Returns a boolean value expression that can be used in any Query call that expects a ValueExp. |