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 BaselineProfileMode

Returns the enum constant of this type with the specified name.

final @NonNull BaselineProfileMode[]

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

valueOf

Added in 1.1.0
public 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

Added in 1.1.0
public 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.