Enum TemplateUIType

  • All Implemented Interfaces:
    com.google.protobuf.Internal.EnumLite, java.io.Serializable, java.lang.Comparable<TemplateUIType>

    public enum TemplateUIType
    extends java.lang.Enum<TemplateUIType>
    implements com.google.protobuf.Internal.EnumLite
    Protobuf enum streamlayer.interactive.library.TemplateUIType
    • Enum Constant Detail

      • QUESTION_UI_TYPE_UNSET

        public static final TemplateUIType QUESTION_UI_TYPE_UNSET
        QUESTION_UI_TYPE_UNSET = 0;
      • QUESTION_UI_TYPE_GOOGLE_AD

        public static final TemplateUIType QUESTION_UI_TYPE_GOOGLE_AD
         Google AD
         
        QUESTION_UI_TYPE_GOOGLE_AD = 1;
      • QUESTION_UI_TYPE_STANDARD_AD

        public static final TemplateUIType QUESTION_UI_TYPE_STANDARD_AD
         Standard Ad
         
        QUESTION_UI_TYPE_STANDARD_AD = 2;
      • QUESTION_UI_TYPE_LOWER_THIRD

        public static final TemplateUIType QUESTION_UI_TYPE_LOWER_THIRD
         Lower Third
         
        QUESTION_UI_TYPE_LOWER_THIRD = 3;
      • QUESTION_UI_TYPE_SIDE_BY_SIDE

        public static final TemplateUIType QUESTION_UI_TYPE_SIDE_BY_SIDE
         Side-by-side
         
        QUESTION_UI_TYPE_SIDE_BY_SIDE = 4;
      • QUESTION_UI_TYPE_PICTURE_IN_PICTURE

        public static final TemplateUIType QUESTION_UI_TYPE_PICTURE_IN_PICTURE
         Picture in Picture
         
        QUESTION_UI_TYPE_PICTURE_IN_PICTURE = 5;
      • QUESTION_UI_TYPE_NFL_SHOPPABLE_AD

        public static final TemplateUIType QUESTION_UI_TYPE_NFL_SHOPPABLE_AD
         NFL Shoppable Ad
         
        QUESTION_UI_TYPE_NFL_SHOPPABLE_AD = 6;
      • QUESTION_UI_TYPE_INSIGHT_AD

        public static final TemplateUIType QUESTION_UI_TYPE_INSIGHT_AD
         Insight Ad
         
        QUESTION_UI_TYPE_INSIGHT_AD = 7;
      • QUESTION_UI_TYPE_POLL_AD

        public static final TemplateUIType QUESTION_UI_TYPE_POLL_AD
         Poll Ad
         
        QUESTION_UI_TYPE_POLL_AD = 8;
      • QUESTION_UI_TYPE_TRIVIA_AD

        public static final TemplateUIType QUESTION_UI_TYPE_TRIVIA_AD
         Trivia Ad
         
        QUESTION_UI_TYPE_TRIVIA_AD = 9;
      • QUESTION_UI_TYPE_PREDICTION_AD

        public static final TemplateUIType QUESTION_UI_TYPE_PREDICTION_AD
         Prediction Ad
         
        QUESTION_UI_TYPE_PREDICTION_AD = 10;
      • QUESTION_UI_TYPE_SHOPPABLE_AD

        public static final TemplateUIType QUESTION_UI_TYPE_SHOPPABLE_AD
         Shoppable Ad
         
        QUESTION_UI_TYPE_SHOPPABLE_AD = 11;
    • Field Detail

      • QUESTION_UI_TYPE_UNSET_VALUE

        public static final int QUESTION_UI_TYPE_UNSET_VALUE
        QUESTION_UI_TYPE_UNSET = 0;
        See Also:
        Constant Field Values
      • QUESTION_UI_TYPE_GOOGLE_AD_VALUE

        public static final int QUESTION_UI_TYPE_GOOGLE_AD_VALUE
         Google AD
         
        QUESTION_UI_TYPE_GOOGLE_AD = 1;
        See Also:
        Constant Field Values
      • QUESTION_UI_TYPE_STANDARD_AD_VALUE

        public static final int QUESTION_UI_TYPE_STANDARD_AD_VALUE
         Standard Ad
         
        QUESTION_UI_TYPE_STANDARD_AD = 2;
        See Also:
        Constant Field Values
      • QUESTION_UI_TYPE_LOWER_THIRD_VALUE

        public static final int QUESTION_UI_TYPE_LOWER_THIRD_VALUE
         Lower Third
         
        QUESTION_UI_TYPE_LOWER_THIRD = 3;
        See Also:
        Constant Field Values
      • QUESTION_UI_TYPE_SIDE_BY_SIDE_VALUE

        public static final int QUESTION_UI_TYPE_SIDE_BY_SIDE_VALUE
         Side-by-side
         
        QUESTION_UI_TYPE_SIDE_BY_SIDE = 4;
        See Also:
        Constant Field Values
      • QUESTION_UI_TYPE_PICTURE_IN_PICTURE_VALUE

        public static final int QUESTION_UI_TYPE_PICTURE_IN_PICTURE_VALUE
         Picture in Picture
         
        QUESTION_UI_TYPE_PICTURE_IN_PICTURE = 5;
        See Also:
        Constant Field Values
      • QUESTION_UI_TYPE_NFL_SHOPPABLE_AD_VALUE

        public static final int QUESTION_UI_TYPE_NFL_SHOPPABLE_AD_VALUE
         NFL Shoppable Ad
         
        QUESTION_UI_TYPE_NFL_SHOPPABLE_AD = 6;
        See Also:
        Constant Field Values
      • QUESTION_UI_TYPE_INSIGHT_AD_VALUE

        public static final int QUESTION_UI_TYPE_INSIGHT_AD_VALUE
         Insight Ad
         
        QUESTION_UI_TYPE_INSIGHT_AD = 7;
        See Also:
        Constant Field Values
      • QUESTION_UI_TYPE_POLL_AD_VALUE

        public static final int QUESTION_UI_TYPE_POLL_AD_VALUE
         Poll Ad
         
        QUESTION_UI_TYPE_POLL_AD = 8;
        See Also:
        Constant Field Values
      • QUESTION_UI_TYPE_TRIVIA_AD_VALUE

        public static final int QUESTION_UI_TYPE_TRIVIA_AD_VALUE
         Trivia Ad
         
        QUESTION_UI_TYPE_TRIVIA_AD = 9;
        See Also:
        Constant Field Values
      • QUESTION_UI_TYPE_PREDICTION_AD_VALUE

        public static final int QUESTION_UI_TYPE_PREDICTION_AD_VALUE
         Prediction Ad
         
        QUESTION_UI_TYPE_PREDICTION_AD = 10;
        See Also:
        Constant Field Values
      • QUESTION_UI_TYPE_SHOPPABLE_AD_VALUE

        public static final int QUESTION_UI_TYPE_SHOPPABLE_AD_VALUE
         Shoppable Ad
         
        QUESTION_UI_TYPE_SHOPPABLE_AD = 11;
        See Also:
        Constant Field Values
    • Method Detail

      • values

        public static TemplateUIType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TemplateUIType c : TemplateUIType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TemplateUIType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
      • valueOf

        @Deprecated
        public static TemplateUIType valueOf​(int value)
        Deprecated.
        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:
        value - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • internalGetValueMap

        public static com.google.protobuf.Internal.EnumLiteMap<TemplateUIType> internalGetValueMap()
      • internalGetVerifier

        public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()