Searched refs:ValueExp (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/
H A DBadBinaryOpValueExpException.java44 * @serial the {@link ValueExp} that originated this exception
46 private ValueExp exp;
50 * Constructs a <CODE>BadBinaryOpValueExpException</CODE> with the specified <CODE>ValueExp</CODE>.
54 public BadBinaryOpValueExpException(ValueExp exp) {
60 * Returns the <CODE>ValueExp</CODE> that originated the exception.
62 * @return the problematic {@link ValueExp}.
64 public ValueExp getExp() {
H A DQuery.java168 public static QueryExp gt(ValueExp v1, ValueExp v2) {
186 public static QueryExp geq(ValueExp v1, ValueExp v2) {
204 public static QueryExp leq(ValueExp v1, ValueExp v2) {
222 public static QueryExp lt(ValueExp v1, ValueExp v2) {
240 public static QueryExp eq(ValueExp v1, ValueExp v
[all...]
H A DValueExp.java32 * and should be represented by implementations of <CODE>ValueExp</CODE>.
37 We considered generifying this interface as ValueExp<T>, where T is
42 to have type ValueExp<Integer> (or maybe ValueExp<Long> or ValueExp<Number>)
43 but for Query.attr we can't do better than ValueExp<?> or plain ValueExp.
45 QueryExp <T> lt(ValueExp<T> v1, ValueExp<T> v2)
47 number against a string, in practice the first ValueExp wil
74 public interface ValueExp extends java.io.Serializable { interface in inherits:java.io.Serializable
[all...]
H A DBetweenQueryExp.java44 private ValueExp exp1;
49 private ValueExp exp2;
54 private ValueExp exp3;
67 public BetweenQueryExp(ValueExp v1, ValueExp v2, ValueExp v3) {
77 public ValueExp getCheckedValue() {
84 public ValueExp getLowerBound() {
91 public ValueExp getUpperBound() {
109 ValueExp val
[all...]
H A DInQueryExp.java42 * @serial The {@link ValueExp} to be found
44 private ValueExp val;
47 * @serial The array of {@link ValueExp} to be searched
49 private ValueExp[] valueList;
59 * Creates a new InQueryExp with the specified ValueExp to be found in
60 * a specified array of ValueExp.
62 public InQueryExp(ValueExp v1, ValueExp items[]) {
71 public ValueExp getCheckedValue() {
78 public ValueExp[] getExplicitValue
[all...]
H A DBinaryOpValueExp.java36 class BinaryOpValueExp extends QueryEval implements ValueExp {
49 private ValueExp exp1;
54 private ValueExp exp2;
67 public BinaryOpValueExp(int o, ValueExp v1, ValueExp v2) {
84 public ValueExp getLeftValue() {
91 public ValueExp getRightValue() {
100 * @return The ValueExp.
107 public ValueExp apply(ObjectName name) throws BadStringOperationException, BadBinaryOpValueExpException,
109 ValueExp val
[all...]
H A DStringValueExp.java32 * A <CODE>StringValueExp</CODE> may be used anywhere a <CODE>ValueExp</CODE> is required.
36 public class StringValueExp implements ValueExp {
92 * Applies the ValueExp on a MBean.
94 * @param name The name of the MBean on which the ValueExp will be applied.
96 * @return The <CODE>ValueExp</CODE>.
103 public ValueExp apply(ObjectName name) throws BadStringOperationException, BadBinaryOpValueExpException,
H A DBooleanValueExp.java31 * used anywhere a ValueExp is required.
36 class BooleanValueExp extends QueryEval implements ValueExp {
71 * Applies the ValueExp on a MBean.
73 * @param name The name of the MBean on which the ValueExp will be applied.
75 * @return The <CODE>ValueExp</CODE>.
82 public ValueExp apply(ObjectName name) throws BadStringOperationException, BadBinaryOpValueExpException,
H A DBinaryRelQueryExp.java49 private ValueExp exp1;
54 private ValueExp exp2;
67 public BinaryRelQueryExp(int op, ValueExp v1, ValueExp v2) {
84 public ValueExp getLeftValue() {
91 public ValueExp getRightValue() {
H A DAttributeValueExp.java39 * <CODE>ValueExp</CODE> is required.
43 public class AttributeValueExp implements ValueExp {
68 * of this {@link ValueExp}.
86 * the result as a {@code ValueExp}. The value returned by
94 * @return The <CODE>ValueExp</CODE>.
103 public ValueExp apply(ObjectName name) throws BadStringOperationException, BadBinaryOpValueExpException,
H A DClassAttributeValueExp.java97 * @return The ValueExp.
102 public ValueExp apply(ObjectName name)
H A DQualifiedAttributeValueExp.java33 * anywhere a ValueExp is required.
81 * @return The ValueExp.
89 public ValueExp apply(ObjectName name) throws BadStringOperationException, BadBinaryOpValueExpException,
H A DNumericValueExp.java40 * A NumericValueExp may be used anywhere a ValueExp is required.
49 class NumericValueExp extends QueryEval implements ValueExp {
169 * Applies the ValueExp on a MBean.
171 * @param name The name of the MBean on which the ValueExp will be applied.
173 * @return The <CODE>ValueExp</CODE>.
180 public ValueExp apply(ObjectName name)
H A DMatchQueryExp.java101 ValueExp val = exp.apply(name);
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java39 private static final ValueExp
86 in = Query.in(intValue, new ValueExp[] {intValue, floatValue}),
155 if (tests[i] instanceof ValueExp)
196 ValueExp exp = parseExp(ss);
199 ValueExp pat = parseExp(ss);
218 return Query.in(exp, (ValueExp[]) values.toArray(new ValueExp[0]));
248 ValueExp lhs = parseExp(ss);
254 ValueExp rhs = parseExp(ss);
271 ValueExp hig
[all...]

Completed in 55 milliseconds