| java.lang.Object COM.rl.obf.PatternList
PatternList | public class PatternList (Code) | | Class used for limited pattern matching with '**' (matches across package
boundaries) and '*' (does not match across package boundaries) wildcards.
author: Mark Welsh |
Method Summary | |
public static PatternList | create(String pattern) | public String | getSub(int i) Return the i'th segment. | public String | getSub(int i, int j) Return the i'th through j'th segments, joined by package separators. | public int | length() Number of segments in the list. | public boolean | scExists() | public int | scIndex() Index of the '**' wildcard segment. |
getSub | public String getSub(int i)(Code) | | Return the i'th segment.
|
getSub | public String getSub(int i, int j)(Code) | | Return the i'th through j'th segments, joined by package separators.
|
length | public int length()(Code) | | Number of segments in the list.
|
scExists | public boolean scExists()(Code) | | Does a '**' wildcard segment exist?
|
scIndex | public int scIndex()(Code) | | Index of the '**' wildcard segment.
|
|
|