Package io.opentelemetry.android.semconv
Enum StartAttributes.StartTypeValues
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum StartAttributes.StartTypeValues extends Enum<StartAttributes.StartTypeValues>
<p>Values for START_TYPE.</p>
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringvalueprivate final Stringnameprivate final Integerordinalprivate final EnumEntries<StartAttributes.StartTypeValues>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description COLD<p>The application started from scratch, with no process or activity reused.</p> WARM<p>The application process was reused but the activity had to be recreated.</p> HOT<p>The application and its activity were already in memory and brought to the foreground.</p>
-
Method Summary
Modifier and Type Method Description final StartAttributes.StartTypeValuesvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<StartAttributes.StartTypeValues>values()Returns an array containing the constants of this enum type, in the order they're declared. final StringgetValue()final EnumEntries<StartAttributes.StartTypeValues>getEntries()<p>Values for START_TYPE.</p> -
-
Method Detail
-
valueOf
final StartAttributes.StartTypeValues valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<StartAttributes.StartTypeValues> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<StartAttributes.StartTypeValues> getEntries()
<p>Values for START_TYPE.</p>
-
-
-
-