Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
javax.management.ValueExp

Uses of ValueExp in javax.management
 

Classes in javax.management that implement ValueExp
 class AttributeValueExp
          A String that is an arguement to a query.
(package private)  class BinaryOpValueExp
          A Binary Operation that is an arguement to a query.
(package private)  class BooleanValueExp
          A Boolean that is an arguement to a query.
(package private)  class ClassAttributeValueExp
          Get the class name of the mbean
(package private)  class NumberValueExp
          A Number that is an arguement to a query.
(package private)  class QualifiedAttributeValueExp
          A qualified string that is an argument to a query.
(package private)  class SingleValueExpSupport
          An implementation of single value expression.
 class StringValueExp
          A String that is an arguement to a query.
(package private)  class ValueExpSupport
          An implementation of Value expression.
 

Fields in javax.management declared as ValueExp
(package private)  ValueExp InQueryExp.test
          The value to test
(package private)  ValueExp[] InQueryExp.list
          The list of values
(package private)  ValueExp BinaryOpValueExp.first
          The first expression
(package private)  ValueExp BinaryOpValueExp.second
          The second expression
(package private)  ValueExp BinaryComparisonQueryExp.first
          The first expression
(package private)  ValueExp BinaryComparisonQueryExp.second
          The second expression
(package private)  ValueExp BetweenQueryExp.test
          The value to test
(package private)  ValueExp BetweenQueryExp.lower
          The lower bound
(package private)  ValueExp BetweenQueryExp.upper
          The upper bound
private  ValueExp BadBinaryOpValueExpException.exp
          The invalid expression.
 

Methods in javax.management that return ValueExp
 ValueExp ValueExpSupport.apply(ObjectName name)
           
 ValueExp ValueExp.apply(ObjectName name)
          Apply this value expression to an MBean.
static ValueExp Query.div(ValueExp first, ValueExp second)
          An expression that divides the first expression by the second
static ValueExp Query.minus(ValueExp first, ValueExp second)
          An expression that subtracts the second expression from the first
static ValueExp Query.plus(ValueExp first, ValueExp second)
          An expression that adds the second expression to the first
static ValueExp Query.times(ValueExp first, ValueExp second)
          An expression that multiplies the first expression by the second
static ValueExp Query.value(boolean value)
          Create a boolean value expression for use in a Query.
static ValueExp Query.value(double value)
          Create a double value expression for use in a Query.
static ValueExp Query.value(float value)
          Create a float value expression for use in a Query.
static ValueExp Query.value(int value)
          Create an integer value expression for use in a Query.
static ValueExp Query.value(long value)
          Create a long value expression for use in a Query.
static ValueExp Query.value(java.lang.Number value)
          Create a number value expression for use in a Query.
 ValueExp QualifiedAttributeValueExp.apply(ObjectName name)
           
 ValueExp ClassAttributeValueExp.apply(ObjectName name)
           
 ValueExp BinaryOpValueExp.apply(ObjectName name)
           
 ValueExp BadBinaryOpValueExpException.getExp()
          Retrieve the bad binary value expression.
 ValueExp AttributeValueExp.apply(ObjectName name)
           
 

Methods in javax.management with parameters of type ValueExp
static QueryExp Query.between(ValueExp test, ValueExp lower, ValueExp higher)
          Tests a value is between two other values.
static ValueExp Query.div(ValueExp first, ValueExp second)
          An expression that divides the first expression by the second
static QueryExp Query.eq(ValueExp first, ValueExp second)
          Equals Comparison.
static QueryExp Query.geq(ValueExp first, ValueExp second)
          Greater than or Equals Comparison.
static QueryExp Query.gt(ValueExp first, ValueExp second)
          Greater than.
static QueryExp Query.in(ValueExp test, ValueExp[] list)
          Tests a value is in one of the listed values.
static QueryExp Query.leq(ValueExp first, ValueExp second)
          Less than or equal.
static QueryExp Query.lt(ValueExp first, ValueExp second)
          Less than.
static ValueExp Query.minus(ValueExp first, ValueExp second)
          An expression that subtracts the second expression from the first
static ValueExp Query.plus(ValueExp first, ValueExp second)
          An expression that adds the second expression to the first
static ValueExp Query.times(ValueExp first, ValueExp second)
          An expression that multiplies the first expression by the second
 

Constructors in javax.management with parameters of type ValueExp
InQueryExp(ValueExp test, ValueExp[] list)
          Create a new IN query Expression
BinaryOpValueExp(int operation, ValueExp first, ValueExp second)
          Construct a binary operation value
BinaryComparisonQueryExp(int operation, ValueExp first, ValueExp second)
          Construct a binary comparison query
BetweenQueryExp(ValueExp test, ValueExp lower, ValueExp upper)
          Create a new BETWEEN query Expression
BadBinaryOpValueExpException(ValueExp exp)
          Construct a new BadBinaryValueExpException with the given expression.