Uses of Class
com.github.packageurl.MalformedPackageURLException
Packages that use MalformedPackageURLException
-
Uses of MalformedPackageURLException in com.github.packageurl
Methods in com.github.packageurl that throw MalformedPackageURLExceptionModifier and TypeMethodDescriptionPackageURLBuilder.build()Builds the new PackageURL object.private voidGiven a specified PackageURL, this method will parse the purl and populate this classes instance fields so that the corresponding getters may be called to retrieve the individual pieces of the purl.private String[]PackageURL.parseQualifiers(String encodedString) private StringPackageURL.validateKey(String value) private StringPackageURL.validateName(String value) private StringPackageURL.validateNamespace(String value) private StringPackageURL.validateNamespace(String[] values) private StringPackageURL.validatePath(String[] segments, boolean isSubpath) private StringPackageURL.validatePath(String value, boolean isSubpath) PackageURL.validateQualifiers(Map<String, String> values) private StringPackageURL.validateScheme(String value) private StringPackageURL.validateType(String value) private voidPackageURL.verifyTypeConstraints(String type, String namespace, String name) Some purl types may have specific constraints.Constructors in com.github.packageurl that throw MalformedPackageURLExceptionModifierConstructorDescriptionPackageURL(String purl) Constructs a new PackageURL object by parsing the specified string.PackageURL(String type, String name) Constructs a new PackageURL object by specifying only the required parameters necessary to create a valid PackageURL.PackageURL(String type, String namespace, String name, String version, TreeMap<String, String> qualifiers, String subpath) Constructs a new PackageURL object.