Home | History | Annotate | Download | only in objects

Lines Matching refs:beginIndex

867    * @param      beginIndex   the beginning index, inclusive.
870 * <code>beginIndex</code> is negative or larger than the
873 public XMLString substring(int beginIndex)
875 return new XString(str().substring(beginIndex));
880 * substring begins at the specified <code>beginIndex</code> and
882 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
884 * @param beginIndex the beginning index, inclusive.
888 * <code>beginIndex</code> is negative, or
891 * <code>beginIndex</code> is larger than
894 public XMLString substring(int beginIndex, int endIndex)
896 return new XString(str().substring(beginIndex, endIndex));