Enum Class AllocationProfilingMode

java.lang.Object
java.lang.Enum<AllocationProfilingMode>
com.yourkit.api.controller.v2.AllocationProfilingMode
All Implemented Interfaces:
Serializable, Comparable<AllocationProfilingMode>, Constable

public enum AllocationProfilingMode extends Enum<AllocationProfilingMode>
  • Enum Constant Details

    • BCI

      @Expose @SerializedName("bci") public static final AllocationProfilingMode BCI
      Bytecode instrumentation.
    • COUNTING

      @Expose @SerializedName("counting") public static final AllocationProfilingMode COUNTING
      Light-weight allocation recoding mode which counts allocated objects by class and method.
    • EXACT_STACKS

      @Deprecated @Expose @SerializedName("exactStacks") public static final AllocationProfilingMode EXACT_STACKS
      Deprecated.
    • SAMPLED_STACKS

      @Deprecated @Expose @SerializedName("sampledStacks") public static final AllocationProfilingMode SAMPLED_STACKS
      Deprecated.
    • HEAP_SAMPLING

      @Expose @SerializedName("heapSampling") public static final AllocationProfilingMode HEAP_SAMPLING
      Production-ready allocation profiling mode based on the heap sampling event. Controlled with the heap sampling interval option. Records exact stack traces.
  • Method Details

    • values

      public static AllocationProfilingMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AllocationProfilingMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null