Package org.python.pydev.core.docutils.StringUtils

Examples of org.python.pydev.core.docutils.StringUtils.ICallbackOnSplit


    /**
     * @return true if any of the parts in this modules key start with the passed string (considering the internal
     * parts lower case).
     */
    public boolean hasPartStartingWith(final String startingWithLowerCase) {
        ICallbackOnSplit onSplit = new ProcessCheckIfStartingWithPart(startingWithLowerCase);
        //Return negated: if false was returned it means it returned early or found a part.
        return !StringUtils.split(this.name.toLowerCase(), '.', onSplit);
    }
View Full Code Here

TOP

Related Classes of org.python.pydev.core.docutils.StringUtils.ICallbackOnSplit

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.