|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ValueExp | |
| javax.management | |
| org.huihoo.jfox.jmx.queries | |
| Uses of ValueExp in javax.management |
| Classes in javax.management that implement ValueExp | |
class |
AttributeValueExp
Note: change from jmx-ri, extends QueryEval |
class |
StringValueExp
Represents strings that are arguments to relational constraints. |
| Methods in javax.management that return ValueExp | |
ValueExp |
ValueExp.apply(ObjectName name)
Applies the ValueExp on a MBean. |
static ValueExp |
Query.value(java.lang.Number value)
Returns a numeric value expression that can be used in any Query call that expects a ValueExp. |
static ValueExp |
Query.value(int value)
Returns a numeric value expression that can be used in any Query call that expects a ValueExp. |
static ValueExp |
Query.value(long value)
Returns a numeric value expression that can be used in any Query call that expects a ValueExp. |
static ValueExp |
Query.value(float value)
Returns a numeric value expression that can be used in any Query call that expects a ValueExp. |
static ValueExp |
Query.value(double value)
Returns a numeric value expression that can be used in any Query call that expects a ValueExp. |
static ValueExp |
Query.value(boolean flag)
Returns a boolean value expression that can be used in any Query call that expects a ValueExp. |
static ValueExp |
Query.plus(ValueExp leftvexp,
ValueExp rightvexp)
Returns a binary expression representing the sum of two numeric values, or the concatenation of two string values. |
static ValueExp |
Query.times(ValueExp leftvexp,
ValueExp rightvexp)
Returns a binary expression representing the product of two numeric values. |
static ValueExp |
Query.minus(ValueExp leftvexp,
ValueExp rightvexp)
Returns a binary expression representing the difference between two numeric values. |
static ValueExp |
Query.div(ValueExp leftvexp,
ValueExp rightvexp)
Returns a binary expression representing the quotient of two numeric values. |
ValueExp |
StringValueExp.apply(ObjectName name)
Applies the ValueExp on a MBean. |
ValueExp |
AttributeValueExp.apply(ObjectName name)
Applies the AttributeValueExp on an MBean. |
ValueExp |
BadBinaryOpValueExpException.getExp()
Returns the ValueExp that originated the exception. |
| Methods in javax.management with parameters of type ValueExp | |
static QueryExp |
Query.gt(ValueExp leftvexp,
ValueExp rightvexp)
Returns a query expression that represents a "greater than" constraint on two values. |
static QueryExp |
Query.geq(ValueExp leftvexp,
ValueExp rightvexp)
Returns a query expression that represents a "greater than or equal to" constraint on two values. |
static QueryExp |
Query.leq(ValueExp leftvexp,
ValueExp rightvexp)
Returns a query expression that represents a "less than or equal to" constraint on two values. |
static QueryExp |
Query.lt(ValueExp leftvexp,
ValueExp rightvexp)
Returns a query expression that represents a "less than" constraint on two values. |
static QueryExp |
Query.eq(ValueExp leftvexp,
ValueExp rightvexp)
Returns a query expression that represents an equality constraint on two values. |
static QueryExp |
Query.between(ValueExp leftvexp,
ValueExp checkvexp,
ValueExp rightvexp)
Returns a query expression that represents the constraint that one value is between two other values. |
static QueryExp |
Query.in(ValueExp vexp,
ValueExp[] vexps)
Returns an expression constraining a value to be one of an explicit list. |
static ValueExp |
Query.plus(ValueExp leftvexp,
ValueExp rightvexp)
Returns a binary expression representing the sum of two numeric values, or the concatenation of two string values. |
static ValueExp |
Query.times(ValueExp leftvexp,
ValueExp rightvexp)
Returns a binary expression representing the product of two numeric values. |
static ValueExp |
Query.minus(ValueExp leftvexp,
ValueExp rightvexp)
Returns a binary expression representing the difference between two numeric values. |
static ValueExp |
Query.div(ValueExp leftvexp,
ValueExp rightvexp)
Returns a binary expression representing the quotient of two numeric values. |
| Constructors in javax.management with parameters of type ValueExp | |
BadBinaryOpValueExpException(ValueExp exp)
Constructs a BadBinaryOpValueExpException with the specified ValueExp. |
|
| Uses of ValueExp in org.huihoo.jfox.jmx.queries |
| Classes in org.huihoo.jfox.jmx.queries that implement ValueExp | |
class |
BooleanValueExp
|
class |
ClassAttributeValueExp
|
class |
DivOpValueExp
|
class |
MinusOpValueExp
|
class |
NumericValueExp
|
class |
PlusOpValueExp
|
class |
QualifiedAttributeValueExp
|
class |
TimesOpValueExp
|
| Methods in org.huihoo.jfox.jmx.queries that return ValueExp | |
ValueExp |
TimesOpValueExp.getLeftValue()
|
ValueExp |
TimesOpValueExp.getRightValue()
|
ValueExp |
TimesOpValueExp.apply(ObjectName objectname)
|
ValueExp |
DivOpValueExp.getLeftValue()
|
ValueExp |
DivOpValueExp.getRightValue()
|
ValueExp |
DivOpValueExp.apply(ObjectName objectname)
|
ValueExp |
InQueryExp.getCheckedValue()
|
ValueExp[] |
InQueryExp.getExplicitValues()
|
ValueExp |
BooleanValueExp.apply(ObjectName objectname)
|
ValueExp |
GeqRelQueryExp.getLeftValue()
|
ValueExp |
GeqRelQueryExp.getRightValue()
|
ValueExp |
MinusOpValueExp.getLeftValue()
|
ValueExp |
MinusOpValueExp.getRightValue()
|
ValueExp |
MinusOpValueExp.apply(ObjectName objectname)
|
ValueExp |
BetweenQueryExp.getCheckedValue()
|
ValueExp |
BetweenQueryExp.getLowerBound()
|
ValueExp |
BetweenQueryExp.getUpperBound()
|
ValueExp |
ClassAttributeValueExp.apply(ObjectName objectname)
|
ValueExp |
LeqRelQueryExp.getLeftValue()
|
ValueExp |
LeqRelQueryExp.getRightValue()
|
ValueExp |
NumericValueExp.apply(ObjectName objectname)
|
ValueExp |
EqRelQueryExp.getLeftValue()
|
ValueExp |
EqRelQueryExp.getRightValue()
|
ValueExp |
GtRelQueryExp.getLeftValue()
|
ValueExp |
GtRelQueryExp.getRightValue()
|
ValueExp |
LtRelQueryExp.getLeftValue()
|
ValueExp |
LtRelQueryExp.getRightValue()
|
ValueExp |
QualifiedAttributeValueExp.apply(ObjectName objectname)
|
ValueExp |
PlusOpValueExp.getLeftValue()
|
ValueExp |
PlusOpValueExp.getRightValue()
|
ValueExp |
PlusOpValueExp.apply(ObjectName objectname)
|
| Constructors in org.huihoo.jfox.jmx.queries with parameters of type ValueExp | |
TimesOpValueExp(ValueExp _leftExp,
ValueExp _rightExp)
|
|
DivOpValueExp(ValueExp _leftExp,
ValueExp _rightExp)
|
|
InQueryExp(ValueExp valueexp,
ValueExp[] avalueexp)
|
|
GeqRelQueryExp(ValueExp _leftExp,
ValueExp _rightExp)
|
|
MinusOpValueExp(ValueExp _leftExp,
ValueExp _rightExp)
|
|
BetweenQueryExp(ValueExp valueexp,
ValueExp valueexp1,
ValueExp valueexp2)
|
|
LeqRelQueryExp(ValueExp _leftExp,
ValueExp _rightExp)
|
|
EqRelQueryExp(ValueExp _leftExp,
ValueExp _rightExp)
|
|
GtRelQueryExp(ValueExp _leftExp,
ValueExp _rightExp)
|
|
LtRelQueryExp(ValueExp _leftExp,
ValueExp _rightExp)
|
|
PlusOpValueExp(ValueExp _leftExp,
ValueExp _rightExp)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||