Package io.sentry

Enum Class ProfileLifecycle

java.lang.Object
java.lang.Enum<ProfileLifecycle>
io.sentry.ProfileLifecycle
All Implemented Interfaces:
Serializable, Comparable<ProfileLifecycle>, Constable

public enum ProfileLifecycle extends Enum<ProfileLifecycle>
Determines whether the profiling lifecycle is controlled manually or based on the trace lifecycle.
  • Enum Constant Details

    • MANUAL

      public static final ProfileLifecycle MANUAL
      Profiling is controlled manually. You must use the Sentry.startProfiler() and Sentry.stopProfiler() APIs to control the lifecycle of the profiler.
    • TRACE

      public static final ProfileLifecycle TRACE
      Profiling is automatically started when there is at least 1 sampled root span, and it's automatically stopped when there are none.
  • Method Details

    • values

      public static ProfileLifecycle[] 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 ProfileLifecycle 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