-
public final class CallCompositeSupportedScreenOrientation extends ExpandableStringEnum<CallCompositeSupportedScreenOrientation>
A call composite screen orientation.
// Initialize the call composite builder with different parameters final CallCompositeBuilder builder = new CallCompositeBuilder() .setupScreenOrientation(CallCompositeSupportedScreenOrientation.PORTRAIT) .callScreenOrientation(CallCompositeSupportedScreenOrientation.LANDSCAPE); // Build the call composite CallComposite callComposite = builder.build();
-
-
Field Summary
Fields Modifier and Type Field Description public final static CallCompositeSupportedScreenOrientation
PORTRAIT
public final static CallCompositeSupportedScreenOrientation
LANDSCAPE
public final static CallCompositeSupportedScreenOrientation
REVERSE_LANDSCAPE
public final static CallCompositeSupportedScreenOrientation
USER_LANDSCAPE
public final static CallCompositeSupportedScreenOrientation
FULL_SENSOR
public final static CallCompositeSupportedScreenOrientation
USER
-
Method Summary
Modifier and Type Method Description static CallCompositeSupportedScreenOrientation
fromString(String name)
Creates or finds a CallCompositeSupportedScreenOrientation from its string representation. static Collection<CallCompositeSupportedScreenOrientation>
values()
-
-
Method Detail
-
fromString
static CallCompositeSupportedScreenOrientation fromString(String name)
Creates or finds a CallCompositeSupportedScreenOrientation from its string representation.
- Parameters:
name
- a name to look for.
-
values
static Collection<CallCompositeSupportedScreenOrientation> values()
-
-
-
-