Enum FlutterRenderer.DisplayFeatureState
java.lang.Object
java.lang.Enum<FlutterRenderer.DisplayFeatureState>
io.flutter.embedding.engine.renderer.FlutterRenderer.DisplayFeatureState
- All Implemented Interfaces:
Serializable
,Comparable<FlutterRenderer.DisplayFeatureState>
,java.lang.constant.Constable
- Enclosing class:
- FlutterRenderer
public static enum FlutterRenderer.DisplayFeatureState
extends Enum<FlutterRenderer.DisplayFeatureState>
State of the display feature.
For foldables, the state is the posture. For cutouts, this property is UNKNOWN
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe foldable device is completely open.The foldable device's hinge is in an intermediate position between opened and closed state.The display feature is a cutout or this state is new and not yet known to Flutter. -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static FlutterRenderer.DisplayFeatureState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
The display feature is a cutout or this state is new and not yet known to Flutter. -
POSTURE_FLAT
The foldable device is completely open. The screen space that is presented to the user is flat. Corresponds toFoldingFeature.State.FLAT
-
POSTURE_HALF_OPENED
The foldable device's hinge is in an intermediate position between opened and closed state. There is a non-flat angle between parts of the flexible screen or between physical display panels. Corresponds toFoldingFeature.State.HALF_OPENED
-
-
Field Details
-
encodedValue
public final int encodedValue
-
-
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
-