Uses of Class
com.sun.msv.datatype.regexp.Match

Packages that use Match
Package
Description
 
  • Uses of Match in com.sun.msv.datatype.regexp

    Fields in com.sun.msv.datatype.regexp declared as Match
    Modifier and Type
    Field
    Description
    (package private) Match
    RegularExpression.Context.match
     
    Methods in com.sun.msv.datatype.regexp with parameters of type Match
    Modifier and Type
    Method
    Description
    boolean
    RegularExpression.matches(char[] target, int start, int end, Match match)
    Checks whether the target text contains this pattern in specified range or not.
    boolean
    RegularExpression.matches(char[] target, Match match)
    Checks whether the target text contains this pattern or not.
    boolean
    RegularExpression.matches(String target, int start, int end, Match match)
    Checks whether the target text contains this pattern in specified range or not.
    boolean
    RegularExpression.matches(String target, Match match)
    Checks whether the target text contains this pattern or not.
    boolean
    RegularExpression.matches(CharacterIterator target, Match match)
    Checks whether the target text contains this pattern or not.