Searched refs:Match (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java30 * @see RegularExpression#matches(char[], int, int, Match)
31 * @see RegularExpression#matches(char[], Match)
32 * @see RegularExpression#matches(java.text.CharacterIterator, Match)
33 * @see RegularExpression#matches(java.lang.String, int, int, Match)
34 * @see RegularExpression#matches(java.lang.String, Match)
37 public class Match implements Cloneable { class in inherits:Cloneable
49 public Match() { method in class:Match
56 Match ma = new Match();
H A DRegularExpression.java48 * Match match = new Match();
50 * ... // You can refer captured texts with methods of the <code>Match</code> class.
322 * where in target text a group matched with methods of a <code>Match</code> instance
323 * after <code><a href="#matches(java.lang.String, com.sun.org.apache.xerces.internal.utils.regex.Match)">matches(String,Match)</a></code>.
332 * <li><code>Match.getCapturedText(0)</code>:
334 * <li><code>Match.getCapturedText(1)</code>: "<FONT color=red><KBD>TAMURA Kent</KBD></FONT>"
335 * <li><code>Match.getCapturedText(2)</code>: "<FONT color=red><KBD>kent@trl.ibm.co.jp</KBD></FONT>"
671 return this.matches(target, 0, target .length , (Match)nul
[all...]
H A DREUtil.java217 Match match = new Match();
/openjdk7/jdk/test/javax/management/monitor/
H A DAttributeArbitraryDataTypeTest.java65 // Match enum
66 public enum Match { do_not_match_0, enum in class:AttributeArbitraryDataTypeTest
76 new PropertyDescriptor("name", Match.class, "name", null) };
119 public Match getEnumAttribute() {
123 public void setEnumAttribute(Match e) {
131 private Match e;
585 ca.setEnumAttribute(Match.do_not_match_0);
645 ca.setEnumAttribute(Match.do_not_match_1);
661 ca.setEnumAttribute(Match.do_match_now);
677 ca.setEnumAttribute(Match
[all...]

Completed in 28 milliseconds