Uses of Interface
aQute.libg.re.RE.Q

Packages that use RE.Q
Package
Description
 
  • Uses of RE.Q in aQute.libg.re

    Fields in aQute.libg.re declared as RE.Q
    Modifier and Type
    Field
    Description
    static final RE.Q
    Catalog.qualifier
     
    static final RE.Q
    Catalog.setAll
     
    static final RE.Q
    Catalog.setWs
     
    static final RE.Q
    Catalog.someWs
     
    static final RE.Q
    Catalog.word
     
    Methods in aQute.libg.re that return RE.Q
    Modifier and Type
    Method
    Description
    static RE.Q
    Catalog.atLeast(int minimum, RE... res)
    Creates a quantified regular expression that matches at least a specified minimum number of occurrences.
    static RE.Q
    Catalog.atLeast(int minimum, String lit)
    Creates a quantified regular expression that matches at least a specified minimum number of occurrences of a literal string.
    static RE.Q
    Catalog.multiple(int minimum, int maximum, RE... res)
    Creates a quantified regular expression that matches a specified minimum and maximum number of occurrences.
    static RE.Q
    Catalog.multiple(int minimum, int maximum, String lit)
    Creates a quantified regular expression that matches a specified minimum and maximum number of occurrences of a literal string.
    static RE.Q
    Catalog.opt(RE... res)
    Return an optional RE
    static RE.Q
    Catalog.opt(String s)
    Return an optional literal (see Catalog.lit(String)t
    static RE.Q
    Catalog.set(RE... res)
    Return a group of some members.
    static RE.Q
    Catalog.some(RE... res)
    Return a group of some members.
    Methods in aQute.libg.re with parameters of type RE.Q
    Modifier and Type
    Method
    Description
    static RE
    Catalog.greedy(RE.Q re)
    Modifies the given quantified regular expression to match greedily.
    static RE
    Catalog.possesive(RE.Q re)
    Modifies the given quantified regular expression to match in a possessive manner.
    static RE
    Catalog.reluctant(RE.Q re)
    Modifies the given quantified regular expression to match reluctantly.