BaselineProfileMode
public enum BaselineProfileMode extends 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 methods |
|
|---|---|
final @NonNull EnumEntries<@NonNull BaselineProfileMode> |
Returns an immutable |
static final @NonNull BaselineProfileMode |
Returns the enum constant of this type with the specified name. |
static final @NonNull BaselineProfileMode[] |
values()Returns an array containing the constants of this enum type, in the order they're declared. |
Enum Values
Disable
BaselineProfileMode BaselineProfileMode.Disable
Do not include the Baseline Profile, if present, in the compilation of the target app.
Require
BaselineProfileMode BaselineProfileMode.Require
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
BaselineProfileMode BaselineProfileMode.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.
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 methods
getEntries
public final @NonNull EnumEntries<@NonNull BaselineProfileMode> getEntries()
Returns an immutable kotlin.enums.EnumEntries list containing the constants of this enum type, in the order they're declared.
valueOf
public static final @NonNull BaselineProfileMode valueOf(@NonNull 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.)
| Throws | |
|---|---|
kotlin.IllegalArgumentException |
if this enum type has no constant with the specified name |
values
public static final @NonNull BaselineProfileMode[] 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.
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.