Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.tomcat.util.pattern: Javadoc index of package org.apache.tomcat.util.pattern.


Package Samples:

org.apache.tomcat.util.pattern: Utilities used by the rest of com.sun.web.*  

Classes:

ImplicationTable: This is a variant of a Dictionary in which the get() decision is based on "implication of key" rather than equality of key. If the key does not implement Implication interface, the usual equality checks would apply => hashcode() && equals(), so the behavior is similar to a hashtable. Note: In this implementation, when an association is made (put()), we make sure that there is no such key (equality check). But on lookup, (get()) implies() is checked.
Implication: This interface should be implemented by the objects that allow for implies test. implies is not same as equality or comparator tests. In fact equality test is a special form of implies test (when a => b and b => a). In other words, implies is a subset test. This test is useful when doing pattern matching: For example, /foo/bar => /foo/* /foo/bar => /* /foo/bar => /foo/bar etc...
WildcardPattern: This class implements a single Wildcard pattern behavior. It can be used for checking/matching patterns such as: *.foo, boo*foo, /foo/*, /foo*, /*, *
URLPatternMatcher: A form of pattern matching for URLs in which the object corresponding to the longest matching pattern is returned.
PatternMatcher: Interface for implementation of PatternMatcher.
Entry

Home | Contact Us | Privacy Policy | Terms of Service