-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
38 lines (34 loc) · 1.42 KB
/
README
File metadata and controls
38 lines (34 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
This is a library in which we put utility classes that we feel java is missing
IMPORTANT: Do not push a library class or classes to the master branch until:
1. It has no known bugs
2. It has no pending bug fixes
3. It has no important improvements
4. It MUST have documentation
5. Make sure to use eclipse's Clean Up... command and use the included
Clean Up settings (you can modify them if there is something you
really don't like)
Currently in the library:
-com.lab_programming.util.RegularTokenizer
Why I am bothering:
The StringTokenizer has been declared obsolete and is supposedly
superseded by the Matcher/Pattern classes and String's split()
however it does not replace all the functionality such as the
ease of looping through a string and getting the delimiters too
Description:
Like the StringTokenizer class in java.util but can handle
regular expressions for defining the delimeters
Status:
No known bugs and functional documentation is all that is left
Bugs: None known
To do (prioritized in each category from most to least important):
Required Bug Fixes: None
Important Improvements:
-Documentation
Future Plans:
-Allow it to be constructed from a pattern (or maybe
even a matcher)
-Make it extend StringTokenizer
-Make it thread-safe
-Make it iterable
-Make it return "" in between delimiters that are back to back
Comments: