HprofVersion.kt
TLDR
This file contains an enum class called HprofVersion
which represents the supported hprof versions.
Classes
HprofVersion
This class represents the supported hprof versions. It has the following enum constants:
-
JDK1_2_BETA3
: Represents the hprof version "JAVA PROFILE 1.0". -
JDK1_2_BETA4
: Represents the hprof version "JAVA PROFILE 1.0.1". -
JDK_6
: Represents the hprof version "JAVA PROFILE 1.0.2". -
ANDROID
: Represents the hprof version "JAVA PROFILE 1.0.3".
package shark
/**
* Supported hprof versions
*/
enum class HprofVersion(val versionString: String) {
JDK1_2_BETA3("JAVA PROFILE 1.0"),
JDK1_2_BETA4("JAVA PROFILE 1.0.1"),
JDK_6("JAVA PROFILE 1.0.2"),
ANDROID("JAVA PROFILE 1.0.3")
}