Class PackageUtil
- java.lang.Object
-
- com.github.jaiimageio.impl.common.PackageUtil
-
public class PackageUtil extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private static boolean
isCodecLibAvailable
Flag indicating whether codecLib is available.private static java.lang.String
specTitle
Specification Title derived from Manifest.private static java.lang.String
vendor
Implementation vendor derived from Manifest.private static java.lang.String
version
Implementation version derived from Manifest.
-
Constructor Summary
Constructors Constructor Description PackageUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
getSpecificationTitle()
Return the Specification Title string for the package.static java.lang.String
getVendor()
Return a vendor string for the package.static java.lang.String
getVersion()
Return a version string for the package.static boolean
isCodecLibAvailable()
Returns aboolean
indicating whether codecLib is available.
-
-
-
Field Detail
-
isCodecLibAvailable
private static boolean isCodecLibAvailable
Flag indicating whether codecLib is available.
-
version
private static java.lang.String version
Implementation version derived from Manifest.
-
vendor
private static java.lang.String vendor
Implementation vendor derived from Manifest.
-
specTitle
private static java.lang.String specTitle
Specification Title derived from Manifest.
-
-
Method Detail
-
isCodecLibAvailable
public static final boolean isCodecLibAvailable()
Returns aboolean
indicating whether codecLib is available.
-
getVersion
public static final java.lang.String getVersion()
Return a version string for the package.
-
getVendor
public static final java.lang.String getVendor()
Return a vendor string for the package.
-
getSpecificationTitle
public static final java.lang.String getSpecificationTitle()
Return the Specification Title string for the package.
-
-