Searched refs:AttributeValueExp (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/
H A DQuery.java286 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 DAttributeValueExp.java38 * <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 DMatchQueryExp.java45 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 DClassAttributeValueExp.java43 class ClassAttributeValueExp extends AttributeValueExp {
H A DQualifiedAttributeValueExp.java39 class QualifiedAttributeValueExp extends AttributeValueExp {
53 * @deprecated see {@link AttributeValueExp#AttributeValueExp()}
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java68 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