Uses of Class
net.openid.appauth.browser.VersionRange
-
Packages that use VersionRange Package Description net.openid.appauth.browser Defines an abstraction of browsers and mechanisms by which an app can control which browser will be used by AppAuth for authorization. -
-
Uses of VersionRange in net.openid.appauth.browser
Fields in net.openid.appauth.browser declared as VersionRange Modifier and Type Field Description static VersionRangeVersionRange. ANY_VERSIONA version range that matches any delimited version.Methods in net.openid.appauth.browser that return VersionRange Modifier and Type Method Description static VersionRangeVersionRange. atLeast(String version)Creates a version range that will match any version at or above the specified version, which will be parsed as aDelimitedVersion.static VersionRangeVersionRange. atLeast(DelimitedVersion version)Creates a version range that will match any version at or above the specified version.static VersionRangeVersionRange. atMost(String version)Creates a version range that will match any version at or below the specified version, which will be parsed as aDelimitedVersion.static VersionRangeVersionRange. atMost(DelimitedVersion version)Creates a version range that will match any version at or below the specified version.static VersionRangeVersionRange. between(String lowerBound, String upperBound)Creates a version range that will match any version equal to or between the specified versions, which will be parsed asDelimitedVersioninstances.Constructors in net.openid.appauth.browser with parameters of type VersionRange Constructor Description VersionedBrowserMatcher(String packageName, String signatureHash, boolean usingCustomTab, VersionRange versionRange)Creates a browser matcher that requires an exact match on package name, single signature hash, custom tab usage mode, and a version range.VersionedBrowserMatcher(String packageName, Set<String> signatureHashes, boolean usingCustomTab, VersionRange versionRange)Creates a browser matcher that requires an exact match on package name, set of signature hashes, custom tab usage mode, and a version range.
-