Package org.hamcrest.text.pattern.internal.ast

Examples of org.hamcrest.text.pattern.internal.ast.CharacterInUnicodeCategory


    public static PatternComponent anyCharacterNotIn(String range) {
  return new CharacterNotInRange(range);
    }

    public static PatternComponent anyCharacterInCategory(String category) {
  return new CharacterInUnicodeCategory(category);
    }
View Full Code Here

TOP

Related Classes of org.hamcrest.text.pattern.internal.ast.CharacterInUnicodeCategory

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.