All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.opentok.ScreenShareLayoutType Maven / Gradle / Ivy

Go to download

The OpenTok Java SDK lets you generate sessions and tokens for OpenTok applications. This version of the SDK also includes support for working with OpenTok 2.0 archives.

There is a newer version: 4.15.0
Show newest version
/**
 * OpenTok Java SDK
 * Copyright (C) 2025 Vonage.
 * http://www.tokbox.com
 * 
 * Licensed under The MIT License (MIT). See LICENSE file for more information.
 */
package com.opentok;

import com.fasterxml.jackson.annotation.JsonValue;

/**
 * Enumerates type values for the layout.
 */
public enum ScreenShareLayoutType {

        /**
         * Represents the picture-in-picture (pip) layout type.
         */
        PIP("pip"),
        /**
         * Represents the picture-in-picture (pip) layout type.
         */
        BESTFIT("bestFit"),
        /**
         * Represents the vertical presentation layout type.
         */
        VERTICAL("verticalPresentation"),
        /**
         * Represents the horizontal presentation layout type.
         */
        HORIZONTAL("horizontalPresentation");

        private String serialized;

        ScreenShareLayoutType(String s) {
            serialized = s;
        }

        @JsonValue
        public String toString() {
            return serialized;
        }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy