Package burp.api.montoya.core
Interface Version
-
public interface VersionThis interface represents a product version.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringbuild()This method returns the build number (e.g.BurpSuiteEditionedition()This method returns the edition of Burp Suitejava.lang.Stringmajor()This method returns the major version (e.g.java.lang.Stringminor()This method returns the minor version (e.g.java.lang.Stringname()This method returns the product name (e.g.java.lang.StringtoString()
-
-
-
Method Detail
-
name
java.lang.String name()
This method returns the product name (e.g. Burp Suite Professional).- Returns:
- The product name.
-
major
java.lang.String major()
This method returns the major version (e.g. 2022.8).- Returns:
- The major version.
-
minor
java.lang.String minor()
This method returns the minor version (e.g. 1).- Returns:
- The minor version.
-
build
java.lang.String build()
This method returns the build number (e.g. 9320).- Returns:
- The build number.
-
edition
BurpSuiteEdition edition()
This method returns the edition of Burp Suite- Returns:
- The edition of Burp Suite
-
toString
java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-