-
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 CallCompositeSupportedScreenOrientationPORTRAITpublic final static CallCompositeSupportedScreenOrientationLANDSCAPEpublic final static CallCompositeSupportedScreenOrientationREVERSE_LANDSCAPEpublic final static CallCompositeSupportedScreenOrientationUSER_LANDSCAPEpublic final static CallCompositeSupportedScreenOrientationFULL_SENSORpublic final static CallCompositeSupportedScreenOrientationUSER
-
Method Summary
Modifier and Type Method Description static CallCompositeSupportedScreenOrientationfromString(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()
-
-
-
-