BaselineProfileMode
enum BaselineProfileMode : Enum
Choice of how the Baseline Profile in a target application should be included or ignored during pre-compilation.
Summary
Enum Values |
|
|---|---|
Disable |
Do not include the Baseline Profile, if present, in the compilation of the target app. |
Require |
Require the BaselineProfile methods/classes from the target app to be pre-compiled. |
UseIfAvailable |
Include the BaselineProfile methods/classes from the target app into the compilation step if a Baseline Profile and the ProfileInstaller library are both present in the target. |
Public functions |
|
|---|---|
BaselineProfileMode |
Returns the enum constant of this type with the specified name. |
Array<BaselineProfileMode> |
values()Returns an array containing the constants of this enum type, in the order they're declared. |
Public properties |
|
|---|---|
EnumEntries<BaselineProfileMode> |
Returns an immutable |
Enum Values
Disable
val BaselineProfileMode.Disable: BaselineProfileMode
Do not include the Baseline Profile, if present, in the compilation of the target app.
Require
val BaselineProfileMode.Require: BaselineProfileMode
Require the BaselineProfile methods/classes from the target app to be pre-compiled.
If the ProfileInstaller library or Baseline Profile isn't present in the target app, an exception will be thrown at compilation time.
UseIfAvailable
val BaselineProfileMode.UseIfAvailable: BaselineProfileMode
Include the BaselineProfile methods/classes from the target app into the compilation step if a Baseline Profile and the ProfileInstaller library are both present in the target.
This is the same as Require, except it logs instead of throwing when the Baseline Profile or ProfileInstaller library aren't present in the target application.
Public functions
valueOf
fun valueOf(value: String): BaselineProfileMode
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.)
| Throws | |
|---|---|
kotlin.IllegalArgumentException |
if this enum type has no constant with the specified name |
values
fun values(): Array<BaselineProfileMode>
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.
The function returns a new instance of the array on every call. The array could be mutated, so working with it may also require defensive copying. Consider using entries property as a more efficient alternative returning an immutable list of enum entries.
Public properties
entries
val entries: EnumEntries<BaselineProfileMode>
Returns an immutable kotlin.enums.EnumEntries list containing the constants of this enum type, in the order they're declared.