java.lang.Object
org.apache.jena.ext.xerces.impl.xpath.regex.Match
All Implemented Interfaces:
Cloneable

public class Match extends Object implements Cloneable
An instance of this class has ranges captured in matching. @xerces.internal
Version:
$Id: Match.java 446721 2006-09-15 20:35:34Z mrglavas $
Author:
TAMURA Kent <kent@trl.ibm.co.jp>
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates an instance.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    int
    getBeginning(int index)
    Return a start position in the target text matched to specified regular expression group.
    getCapturedText(int index)
    Return an substring of the target text matched to specified regular expression group.
    int
    getEnd(int index)
    Return an end position in the target text matched to specified regular expression group.
    int
    Return the number of regular expression groups.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Match

      public Match()
      Creates an instance.
  • Method Details

    • clone

      public Object clone()
    • getNumberOfGroups

      public int getNumberOfGroups()
      Return the number of regular expression groups. This method returns 1 when the regular expression has no capturing-parenthesis.
    • getBeginning

      public int getBeginning(int index)
      Return a start position in the target text matched to specified regular expression group.
      Parameters:
      index - Less than getNumberOfGroups().
    • getEnd

      public int getEnd(int index)
      Return an end position in the target text matched to specified regular expression group.
      Parameters:
      index - Less than getNumberOfGroups().
    • getCapturedText

      public String getCapturedText(int index)
      Return an substring of the target text matched to specified regular expression group.
      Parameters:
      index - Less than getNumberOfGroups().