Package io.opentelemetry.sdk.internal
Class GlobUtil
java.lang.Object
io.opentelemetry.sdk.internal.GlobUtil
Utilities for glob pattern matching.
This class is internal and is hence not for public use. Its APIs are unstable and can change at any time.
-
Method Summary
Modifier and TypeMethodDescriptiontoGlobPatternPredicate(String globPattern) Return a predicate that returnstrueif a string matches theglobPattern.
-
Method Details
-
toGlobPatternPredicate
Return a predicate that returnstrueif a string matches theglobPattern.globPatternmay contain the wildcard characters*and?with the following matching criteria:*matches 0 or more instances of any character?matches exactly one instance of any character
-