Interface Version


public interface Version
Product version.
e.g. Burp Suite Professional 2022.8.1-9320
  • Method Details

    • name

      String name()
      The product name (e.g. Burp Suite Professional).
      Returns:
      The product name.
    • major

      Deprecated, for removal: This API element is subject to removal in a future version.
      use toString() or buildNumber() instead.
      The major version (e.g. 2022.8).
      Returns:
      The major version.
    • minor

      Deprecated, for removal: This API element is subject to removal in a future version.
      use toString() or buildNumber() instead.
      The minor version (e.g. 1).
      Returns:
      The minor version.
    • build

      Deprecated, for removal: This API element is subject to removal in a future version.
      use toString() or buildNumber() instead.
      The build number (e.g. 9320).
      Returns:
      The build number.
    • buildNumber

      long buildNumber()
      Build number for Burp Suite. You can use this to determine compatibility with different versions of Burp Suite. Do not parse this information, because the format of the number may change.
      Returns:
      The build number.
    • edition

      BurpSuiteEdition edition()
      The edition of Burp Suite
      Returns:
      The edition of Burp Suite
    • toString

      String toString()
      The human-readable version string. Do not parse this information, because the format may change. See also: buildNumber().
      Overrides:
      toString in class Object
      Returns:
      The human-readable version string.