Enum PlatformViewsChannel.PlatformViewCreationRequest.RequestedDisplayMode
java.lang.Object
java.lang.Enum<PlatformViewsChannel.PlatformViewCreationRequest.RequestedDisplayMode>
io.flutter.embedding.engine.systemchannels.PlatformViewsChannel.PlatformViewCreationRequest.RequestedDisplayMode
- All Implemented Interfaces:
Serializable
,Comparable<PlatformViewsChannel.PlatformViewCreationRequest.RequestedDisplayMode>
,java.lang.constant.Constable
- Enclosing class:
- PlatformViewsChannel.PlatformViewCreationRequest
public static enum PlatformViewsChannel.PlatformViewCreationRequest.RequestedDisplayMode
extends Enum<PlatformViewsChannel.PlatformViewCreationRequest.RequestedDisplayMode>
Platform view display modes that can be requested at creation time.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionUse Hybrid Composition in all cases.Use Texture Layer if possible, falling back to Hybrid Composition if not.Use Texture Layer if possible, falling back to Virtual Display 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
public static final PlatformViewsChannel.PlatformViewCreationRequest.RequestedDisplayMode TEXTURE_WITH_VIRTUAL_FALLBACKUse Texture Layer if possible, falling back to Virtual Display if not. -
TEXTURE_WITH_HYBRID_FALLBACK
public static final PlatformViewsChannel.PlatformViewCreationRequest.RequestedDisplayMode TEXTURE_WITH_HYBRID_FALLBACKUse Texture Layer if possible, falling back to Hybrid Composition if not. -
HYBRID_ONLY
public static final PlatformViewsChannel.PlatformViewCreationRequest.RequestedDisplayMode HYBRID_ONLYUse Hybrid Composition 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
public static PlatformViewsChannel.PlatformViewCreationRequest.RequestedDisplayMode valueOf(String name) 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
-