Class Categories.Category

  • All Implemented Interfaces:
    java.util.function.IntPredicate, CharacterClass, IntPredicateProxy
    Enclosing class:
    Categories

    public static class Categories.Category
    extends java.lang.Object
    implements CharacterClass
    A Category is a CharacterClass represented in a regular expression as \p{Xx}. The label Xx is retained, and can be used to determine whether or not two categories are disjoint.
    • Constructor Summary

      Constructors 
      Constructor Description
      Category​(java.lang.String label, IntPredicateProxy predicate)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      IntSet getIntSet()
      Get the set of matching characters if available.
      boolean isDisjoint​(CharacterClass other)
      Ask whether this character class is known to be disjoint with another character class (that is, the two classes have no characters in common).
      boolean test​(int value)
      Test whether a particular codepoint is a member of the character class
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.IntPredicate

        and, negate, or
    • Constructor Detail

      • Category

        public Category​(java.lang.String label,
                        IntPredicateProxy predicate)
    • Method Detail

      • test

        public boolean test​(int value)
        Description copied from interface: CharacterClass
        Test whether a particular codepoint is a member of the character class
        Specified by:
        test in interface CharacterClass
        Specified by:
        test in interface java.util.function.IntPredicate
        Specified by:
        test in interface IntPredicateProxy
        Parameters:
        value - the codepoint to be tested
        Returns:
        true if it matches
      • isDisjoint

        public boolean isDisjoint​(CharacterClass other)
        Description copied from interface: CharacterClass
        Ask whether this character class is known to be disjoint with another character class (that is, the two classes have no characters in common). If in doubt, return false.
        Specified by:
        isDisjoint in interface CharacterClass
        Parameters:
        other - the other character class
        Returns:
        true if the character classes are known to be disjoint; false if there may be characters in common between the two classes
      • getIntSet

        public IntSet getIntSet()
        Description copied from interface: CharacterClass
        Get the set of matching characters if available. If not available, return null
        Specified by:
        getIntSet in interface CharacterClass