Home | History | Annotate | Download | only in utils

Lines Matching refs:beginIndex

627    * @param      beginIndex   the beginning index, inclusive.
630 * <code>beginIndex</code> is negative or larger than the
633 public XMLString substring(int beginIndex)
635 return new XMLStringDefault(m_str.substring(beginIndex));
640 * substring begins at the specified <code>beginIndex</code> and
642 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
644 * @param beginIndex the beginning index, inclusive.
648 * <code>beginIndex</code> is negative, or
651 * <code>beginIndex</code> is larger than
654 public XMLString substring(int beginIndex, int endIndex)
656 return new XMLStringDefault(m_str.substring(beginIndex, endIndex));