Java Doc for AltSTokenizer.java in  » Portal » Open-Portal » util » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Portal » Open Portal » util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   util.AltSTokenizer

AltSTokenizer
public class AltSTokenizer implements Enumeration(Code)
The Sun's StringTokenizer class modified to allow more extensive functionality.




Constructor Summary
public  AltSTokenizer(String str, String delim, boolean returnTokens)
     Constructs an AltSTokenizer instance.
public  AltSTokenizer(String str, String delim)
     Constructs an AltSTokenizer instance.
public  AltSTokenizer(String str)
     Constructs an AltSTokenizer instance.

Method Summary
public  intcountTokens()
     Count tokens.
public  StringgetCurrentLine()
     Return current line, including newline if any.
public  StringgetCurrentLine(boolean decorated)
     Return current line, including newline if any.
public  intgetCurrentLineNumber()
     Return current source line number.
public  StringgetLine(int targ)
     Return specified line, including newline if any.
public  StringgetLine(int targ, boolean decorated)
     Return specified line, including newline if any.
public  booleanhasMoreChars()
     Return true or false there are more characters.
public  booleanhasMoreElements()
    
public  booleanhasMoreTokens()
     Return true or false there are more tokens.
public  StringnextChar()
     Return the next character.
public  ObjectnextElement()
     Return the next element.
public  StringnextSubstring(int endIndex)
     Return the next n characters.
public  StringnextToken()
     Return the next token.
public  StringnextToken(String delim)
     Return the next token but change the delimiter set first.
public  StringpeekChar()
     Return the next character, but don't consume the string.
public  ObjectpeekElement()
     Peek at the next element.
public  StringpeekRemains()
     Return the remaining string.
public  StringpeekSubstring(int endIndex)
     Return the next n characters, but don't consume the string.
public  StringpeekToken()
     Return the next token, but only as a "peek", don't consume the string.
public  StringpeekToken(String delim)
     Return the next token, but only as a "peek", don't consume the string.
public  booleanrespectQuotedStrings()
    
public  voidsetRespectQuotedStrings(boolean respectQuotedStrings)
     Respect double-quoted strings: do not attempt to tokenize within quotes.
public  intstringRemains()
     Return number of characters left.
public  StringtoString()
    


Constructor Detail
AltSTokenizer
public AltSTokenizer(String str, String delim, boolean returnTokens)(Code)
Constructs an AltSTokenizer instance.
Parameters:
  str - the string
Parameters:
  delim - the delimiters
Parameters:
  returnTokens - returns delimiters as tokens or skips them



AltSTokenizer
public AltSTokenizer(String str, String delim)(Code)
Constructs an AltSTokenizer instance.
Parameters:
  str - the string
Parameters:
  delim - the delimiters



AltSTokenizer
public AltSTokenizer(String str)(Code)
Constructs an AltSTokenizer instance.
Parameters:
  str - the string




Method Detail
countTokens
public int countTokens()(Code)
Count tokens.



getCurrentLine
public String getCurrentLine()(Code)
Return current line, including newline if any. Expensive call because the line number isn't currently tracked.



getCurrentLine
public String getCurrentLine(boolean decorated)(Code)
Return current line, including newline if any. Expensive call because the line number isn't currently tracked.
Parameters:
  decorated - with line number and brackets



getCurrentLineNumber
public int getCurrentLineNumber()(Code)
Return current source line number. Expensive call because the line number isn't currently tracked.



getLine
public String getLine(int targ)(Code)
Return specified line, including newline if any. Returns null if the line number requested doesn't exist.
Parameters:
  targ - line number requested



getLine
public String getLine(int targ, boolean decorated)(Code)
Return specified line, including newline if any. Returns null if the line number requested doesn't exist.
Parameters:
  targ - line number requested
Parameters:
  decorated - with line number and brackets



hasMoreChars
public boolean hasMoreChars()(Code)
Return true or false there are more characters.



hasMoreElements
public boolean hasMoreElements()(Code)
Are there more elements?



hasMoreTokens
public boolean hasMoreTokens()(Code)
Return true or false there are more tokens.



nextChar
public String nextChar() throws NoSuchElementException(Code)
Return the next character.
exception:
  NoSuchElementException - If no more characters



nextElement
public Object nextElement()(Code)
Return the next element.



nextSubstring
public String nextSubstring(int endIndex) throws NoSuchElementException(Code)
Return the next n characters.
Parameters:
  endIndex - number of characters to return
exception:
  NoSuchElementException - If there aren't that many



nextToken
public String nextToken() throws NoSuchElementException(Code)
Return the next token.
exception:
  NoSuchElementException - If there aren't that many



nextToken
public String nextToken(String delim)(Code)
Return the next token but change the delimiter set first.
Parameters:
  delim - delimiters



peekChar
public String peekChar() throws NoSuchElementException(Code)
Return the next character, but don't consume the string.
exception:
  NoSuchElementException - If no more characters



peekElement
public Object peekElement()(Code)
Peek at the next element.



peekRemains
public String peekRemains()(Code)
Return the remaining string.



peekSubstring
public String peekSubstring(int endIndex) throws NoSuchElementException(Code)
Return the next n characters, but don't consume the string.
Parameters:
  endIndex - number of characters to return
exception:
  NoSuchElementException - If there aren't that many



peekToken
public String peekToken()(Code)
Return the next token, but only as a "peek", don't consume the string.



peekToken
public String peekToken(String delim)(Code)
Return the next token, but only as a "peek", don't consume the string. First change delimiter set.
Parameters:
  delim - delimiters



respectQuotedStrings
public boolean respectQuotedStrings()(Code)



setRespectQuotedStrings
public void setRespectQuotedStrings(boolean respectQuotedStrings)(Code)
Respect double-quoted strings: do not attempt to tokenize within quotes. For example, if space is a token delimiter and "tree bark" is encountered, it isn't tokenized on the space after tree if quotes are respected.

Currently only double-quotes are respected.

If double-quotes are delimiters, the fact that they are delimters takes precedence over quote respecting.

If the quote is not terminated, the token is the remaining line.




stringRemains
public int stringRemains()(Code)
Return number of characters left.



toString
public String toString()(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.