Enum PlatformViewCreationRequest.RequestedDisplayMode
java.lang.Object
java.lang.Enum<PlatformViewCreationRequest.RequestedDisplayMode>
io.flutter.embedding.engine.systemchannels.PlatformViewCreationRequest.RequestedDisplayMode
- All Implemented Interfaces:
Serializable,Comparable<PlatformViewCreationRequest.RequestedDisplayMode>,java.lang.constant.Constable
- Enclosing class:
PlatformViewCreationRequest
public static enum PlatformViewCreationRequest.RequestedDisplayMode
extends Enum<PlatformViewCreationRequest.RequestedDisplayMode>
Platform view display modes that can be requested at creation time. Not used by Hybrid
Composition++ (HCPP), as HCPP always takes priority if enabled and does not use fallbacks in
the creation path, and as such does not need to be requested.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUse Hybrid Composition (HC) in all cases.Use Texture Layer Hybrid Composition (TLHC), falling back to Hybrid Composition (HC) if not.Use Texture Layer Hybrid Composition (TLHC) if possible, falling back to Virtual Display (VD) if not. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TEXTURE_WITH_VIRTUAL_FALLBACK
Use Texture Layer Hybrid Composition (TLHC) if possible, falling back to Virtual Display (VD) if not. -
TEXTURE_WITH_HYBRID_FALLBACK
Use Texture Layer Hybrid Composition (TLHC), falling back to Hybrid Composition (HC) if not. -
HYBRID_ONLY
Use Hybrid Composition (HC) in all cases.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-