Searched refs:AttributeValueExp (Results 1 - 6 of 6) sorted by relevance
/openjdk7/jdk/src/share/classes/javax/management/ |
H A D | Query.java | 286 public static QueryExp match(AttributeValueExp a, StringValueExp s) { 291 * <p>Returns a new attribute expression. See {@link AttributeValueExp} 303 public static AttributeValueExp attr(String name) { 304 return new AttributeValueExp(name); 326 public static AttributeValueExp attr(String className, String name) { 345 public static AttributeValueExp classattr() { 573 public static QueryExp initialSubString(AttributeValueExp a, StringValueExp s) { 592 public static QueryExp anySubString(AttributeValueExp a, StringValueExp s) { 612 public static QueryExp finalSubString(AttributeValueExp a, StringValueExp s) {
|
H A D | AttributeValueExp.java | 38 * <p>An <CODE>AttributeValueExp</CODE> may be used anywhere a 43 public class AttributeValueExp implements ValueExp { class in inherits:ValueExp 55 * An <code>AttributeValueExp</code> with a null attribute. 60 public AttributeValueExp() { method in class:AttributeValueExp 64 * Creates a new <CODE>AttributeValueExp</CODE> representing the 70 public AttributeValueExp(String attr) { method in class:AttributeValueExp 84 * <p>Applies the <CODE>AttributeValueExp</CODE> on an MBean. 92 * @param name The name of the MBean on which the <CODE>AttributeValueExp</CODE> will be applied. 136 evaluted an AttributeValueExp can only appear inside a QueryExp,
|
H A D | MatchQueryExp.java | 45 private AttributeValueExp exp; 60 * Creates a new MatchQueryExp where the specified AttributeValueExp matches 63 public MatchQueryExp(AttributeValueExp a, StringValueExp s) { 72 public AttributeValueExp getAttribute() {
|
H A D | ClassAttributeValueExp.java | 43 class ClassAttributeValueExp extends AttributeValueExp {
|
H A D | QualifiedAttributeValueExp.java | 39 class QualifiedAttributeValueExp extends AttributeValueExp { 53 * @deprecated see {@link AttributeValueExp#AttributeValueExp()}
|
/openjdk7/jdk/test/javax/management/query/ |
H A D | QueryExpStringTest.java | 68 match = Query.match((AttributeValueExp) attr, 70 initial = Query.initialSubString((AttributeValueExp) attr, 72 initialStar = Query.initialSubString((AttributeValueExp) attr, 74 initialPercent = Query.initialSubString((AttributeValueExp) attr, 76 any = Query.anySubString((AttributeValueExp) attr, 78 anyStar = Query.anySubString((AttributeValueExp) attr, 80 anyPercent = Query.anySubString((AttributeValueExp) attr, 82 ffinal = Query.finalSubString((AttributeValueExp) attr, 84 finalMagic = Query.finalSubString((AttributeValueExp) attr, 200 if (!(exp instanceof AttributeValueExp [all...] |
Completed in 34 milliseconds