Java Doc for WildcardPattern.java in  » Scripting » jruby » jregex » 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 » Scripting » jruby » jregex 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   jregex.Pattern
      jregex.WildcardPattern

WildcardPattern
public class WildcardPattern extends Pattern (Code)
A Pattern subclass that accepts a simplified pattern syntax:
  • ? - matches any single character;
  • * - matches any number of any characters;
  • all the rest - matches itself. Each wildcard takes a capturing group withing a pattern.
    See Also:   Pattern


  • Field Summary
    final public static  StringANY_CHAR
        
    final public static  StringWORD_CHAR
        

    Constructor Summary
    public  WildcardPattern(String wc)
        
    public  WildcardPattern(String wc, boolean icase)
        
    public  WildcardPattern(String wc, int flags)
        
    Parameters:
      wc - The pattern
    Parameters:
      flags - The bitwise OR of any of REFlags.* .
    public  WildcardPattern(String wc, String wcClass, int flags)
        
    Parameters:
      wc - The pattern
    Parameters:
      wcClass - The wildcard class, could be any of WORD_CHAR or ANY_CHAR
    Parameters:
      flags - The bitwise OR of any of REFlags.* .
    protected  WildcardPattern()
        

    Method Summary
    protected  voidcompile(String wc, String wcClass, String specials, int flags)
        
    protected static  StringconvertSpecials(String s, String wcClass, String specials)
        
    public  StringtoString()
        

    Field Detail
    ANY_CHAR
    final public static String ANY_CHAR(Code)



    WORD_CHAR
    final public static String WORD_CHAR(Code)




    Constructor Detail
    WildcardPattern
    public WildcardPattern(String wc)(Code)

    Parameters:
      wc - The pattern



    WildcardPattern
    public WildcardPattern(String wc, boolean icase)(Code)

    Parameters:
      wc - The pattern
    Parameters:
      icase - If true, the pattern is case-insensitive.



    WildcardPattern
    public WildcardPattern(String wc, int flags)(Code)

    Parameters:
      wc - The pattern
    Parameters:
      flags - The bitwise OR of any of REFlags.* . The only meaningfulflags are REFlags.IGNORE_CASE and REFlags.DOTALL (the latter allows the wildcards to match the EOL characters).



    WildcardPattern
    public WildcardPattern(String wc, String wcClass, int flags)(Code)

    Parameters:
      wc - The pattern
    Parameters:
      wcClass - The wildcard class, could be any of WORD_CHAR or ANY_CHAR
    Parameters:
      flags - The bitwise OR of any of REFlags.* . The only meaningfulflags are REFlags.IGNORE_CASE and REFlags.DOTALL (the latter allows the wildcards to match the EOL characters).



    WildcardPattern
    protected WildcardPattern()(Code)




    Method Detail
    compile
    protected void compile(String wc, String wcClass, String specials, int flags)(Code)



    convertSpecials
    protected static String convertSpecials(String s, String wcClass, String specials)(Code)



    toString
    public String toString()(Code)



    Fields inherited from jregex.Pattern
    int counters(Code)(Java Doc)
    int lookaheads(Code)(Java Doc)
    int memregs(Code)(Java Doc)
    Hashtable namedGroupMap(Code)(Java Doc)
    Term rootroot0(Code)(Java Doc)
    String stringRepr(Code)(Java Doc)

    Methods inherited from jregex.Pattern
    protected void compile(String regex, int flags) throws PatternSyntaxException(Code)(Java Doc)
    public int groupCount()(Code)(Java Doc)
    public Integer groupId(String name)(Code)(Java Doc)
    public Matcher matcher()(Code)(Java Doc)
    public Matcher matcher(String s)(Code)(Java Doc)
    public Matcher matcher(char[] data, int start, int end)(Code)(Java Doc)
    public Matcher matcher(MatchResult res, int groupId)(Code)(Java Doc)
    public Matcher matcher(MatchResult res, String groupName)(Code)(Java Doc)
    public Matcher matcher(Reader text, int length) throws IOException(Code)(Java Doc)
    public boolean matches(String s)(Code)(Java Doc)
    static int parseFlags(String flags) throws PatternSyntaxException(Code)(Java Doc)
    static int parseFlags(char[] data, int start, int len) throws PatternSyntaxException(Code)(Java Doc)
    public Replacer replacer(String expr)(Code)(Java Doc)
    public Replacer replacer(Substitution model)(Code)(Java Doc)
    public boolean startsWith(String s)(Code)(Java Doc)
    public String toString()(Code)(Java Doc)
    public String toString_d()(Code)(Java Doc)
    public RETokenizer tokenizer(String text)(Code)(Java Doc)
    public RETokenizer tokenizer(char[] data, int off, int len)(Code)(Java Doc)
    public RETokenizer tokenizer(Reader in, int length) throws IOException(Code)(Java Doc)

    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.