Java Doc for Parser.java in  » Database-ORM » JPOX » org » jpox » store » query » 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 » Database ORM » JPOX » org.jpox.store.query 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.jpox.store.query.Parser

All known Subclasses:   org.jpox.store.query.JPQLParser,
Parser
public class Parser (Code)
Parser for a Query. The query can be JDOQL, or JPQL. Allows a class to work its way through the parsed string, obtaining relevant components with each call, or peeking ahead before deciding what component to parse next.
version:
   $Revision: 1.18 $


Field Summary
final protected static  LocaliserLOCALISER
     Localiser for messages.
final protected  CharacterIteratorci
    
final protected  Importsimports
    
final protected  Stringinput
    

Constructor Summary
public  Parser(String input, Imports imports)
    

Method Summary
public  intgetIndex()
     Accessor for the current index in the input string.
public  StringgetInput()
     Accessor for the input string.
public  booleannextIsDot()
     Utility to return if the next character is a dot.
public  booleannextIsSingleQuote()
     Utility to return if the next non-whitespace character is a single quote.
public  BooleanparseBooleanLiteral()
     Parse a boolean from the current position.
public  ClassparseCast(ClassLoaderResolver clr, ClassLoader primary)
     Parse a cast in the query from the current position, returning the class that is being cast to.
public  booleanparseChar(char c)
    
public  booleanparseChar(char c, char unlessFollowedBy)
    
public  CharacterparseCharacterLiteral()
     Parse a Character literal. the Character parsed.
public  booleanparseEOS()
    
protected  charparseEscapedCharacter()
     Parse a escaped character.
public  BigDecimalparseFloatingPointLiteral()
     Parse a floating point number from the current position.
public  StringparseIdentifier()
     Parse a java identifier from the current position.
public  BigIntegerparseIntegerLiteral()
     Parse an integer number from the current position.
public  StringparseMethod()
    
public  StringparseName()
     Parses the text string (up to the next space) and returns it.
public  booleanparseNullLiteral()
    
public  booleanparseString(String s)
    
public  booleanparseStringIgnoreCase(String s)
    
public  StringparseStringLiteral()
     Parse a String literal. the String parsed.
public  booleanpeekStringIgnoreCase(String s)
     Check if String "s" is found ignoring the case, and not moving the cursor position.
public  Stringremaining()
    
public  intskipWS()
     Skip over any whitespace from the current position.
public  StringtoString()
    

Field Detail
LOCALISER
final protected static Localiser LOCALISER(Code)
Localiser for messages.



ci
final protected CharacterIterator ci(Code)



imports
final protected Imports imports(Code)



input
final protected String input(Code)




Constructor Detail
Parser
public Parser(String input, Imports imports)(Code)
Constructor
Parameters:
  input - The input string
Parameters:
  imports - Necessary imports to use in the parse.




Method Detail
getIndex
public int getIndex()(Code)
Accessor for the current index in the input string. The current index.



getInput
public String getInput()(Code)
Accessor for the input string. The input string.



nextIsDot
public boolean nextIsDot()(Code)
Utility to return if the next character is a dot. Whether it is a dot at the current point



nextIsSingleQuote
public boolean nextIsSingleQuote()(Code)
Utility to return if the next non-whitespace character is a single quote. Whether it is a single quote at the current point (ignoring whitespace)



parseBooleanLiteral
public Boolean parseBooleanLiteral()(Code)
Parse a boolean from the current position. The boolean parsed (null if not valid).



parseCast
public Class parseCast(ClassLoaderResolver clr, ClassLoader primary)(Code)
Parse a cast in the query from the current position, returning the class that is being cast to. Returns null if the current position doesnt have a cast.
Parameters:
  clr - The ClassLoaderResolver
Parameters:
  primary - The primary class loader to use (if any) The class to cast to



parseChar
public boolean parseChar(char c)(Code)
Check if char c is found
Parameters:
  c - the Character to find true if c is found



parseChar
public boolean parseChar(char c, char unlessFollowedBy)(Code)
Check if char c is found
Parameters:
  c - the Character to find
Parameters:
  unlessFollowedBy - the character to validate it does not follow c true if c is found and not followed by unlessFollowedBy



parseCharacterLiteral
public Character parseCharacterLiteral()(Code)
Parse a Character literal. the Character parsed. null if single quotes is found
throws:
  JPOXUserException - if an invalid character is found or the CharacterIterator is finished



parseEOS
public boolean parseEOS()(Code)
Check if END OF TEXT is reach true if END OF TEXT is reach



parseEscapedCharacter
protected char parseEscapedCharacter()(Code)
Parse a escaped character. the escaped char
throws:
  JPOXUserException - if a escaped character is not valid



parseFloatingPointLiteral
public BigDecimal parseFloatingPointLiteral()(Code)
Parse a floating point number from the current position. The floating point number parsed (null if not valid).



parseIdentifier
public String parseIdentifier()(Code)
Parse a java identifier from the current position. The identifier



parseIntegerLiteral
public BigInteger parseIntegerLiteral()(Code)
Parse an integer number from the current position. The integer number parsed (null if not valid).



parseMethod
public String parseMethod()(Code)
Checks if a java Method is found true if a Method is found



parseName
public String parseName()(Code)
Parses the text string (up to the next space) and returns it. The name includes '.' characters. This can be used, for example, when parsing a class name wanting to read in the full name (including package) so that it can then be checked for existence in the CLASSPATH. The name



parseNullLiteral
public boolean parseNullLiteral()(Code)
Checks if null literal is parsed true if null literal is found



parseString
public boolean parseString(String s)(Code)
Check if String s is found
Parameters:
  s - the String to find true if s is found



parseStringIgnoreCase
public boolean parseStringIgnoreCase(String s)(Code)
Check if String s is found ignoring the case
Parameters:
  s - the String to find true if s is found



parseStringLiteral
public String parseStringLiteral()(Code)
Parse a String literal. the String parsed. null if single quotes or double quotes is found
throws:
  JPOXUserException - if an invalid character is found or the CharacterIterator is finished



peekStringIgnoreCase
public boolean peekStringIgnoreCase(String s)(Code)
Check if String "s" is found ignoring the case, and not moving the cursor position.
Parameters:
  s - the String to find true if string is found



remaining
public String remaining()(Code)



skipWS
public int skipWS()(Code)
Skip over any whitespace from the current position. The new position



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.