01: package java.util;
02:
03: public class StringTokenizer implements Enumeration {
04: public StringTokenizer(String str) {
05: }
06:
07: public StringTokenizer(String str, String delim) {
08: }
09:
10: public StringTokenizer(String str, String delim,
11: boolean returnDelims) {
12: }
13:
14: public boolean hasMoreTokens() {
15: }
16:
17: public String nextToken(String delim) throws NoSuchElementException {
18: }
19:
20: public String nextToken() throws NoSuchElementException {
21: }
22:
23: public boolean hasMoreElements() {
24: }
25:
26: public Object nextElement() throws NoSuchElementException {
27: }
28:
29: public int countTokens() {
30: }
31: }
|