All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class JP.ac.osaka_u.ender.util.regex.MatchInfo

java.lang.Object
   |
   +----JP.ac.osaka_u.ender.util.regex.MatchInfo

public class MatchInfo
extends Object
A class used in pattern matching.


Constructor Index

 o MatchInfo()
Constructor.
 o MatchInfo(int, int, String)
Constructor.

Method Index

 o end()
Returns the end index of the matched string.
 o matchString()
Returns the matched string.
 o start()
Returns the start index of the matched string.
 o toString()

Constructors

 o MatchInfo
 public MatchInfo()
Constructor.

 o MatchInfo
 public MatchInfo(int start,
                  int end,
                  String matchString)
Constructor.

Methods

 o start
 public int start()
Returns the start index of the matched string.

 o end
 public int end()
Returns the end index of the matched string.

 o matchString
 public String matchString()
Returns the matched string.

 o toString
 public String toString()
Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index