Enum FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason

    • Field Detail

      • UNSPECIFIED_VALUE

        public static final int UNSPECIFIED_VALUE
         No value has been specified.
         
        UNSPECIFIED = 0;
        See Also:
        Constant Field Values
      • UNKNOWN_VALUE

        public static final int UNKNOWN_VALUE
         Used for return value only. Represents value unknown in this version.
         
        UNKNOWN = 1;
        See Also:
        Constant Field Values
      • PRICE_TABLE_REPETITIVE_HEADERS_VALUE

        public static final int PRICE_TABLE_REPETITIVE_HEADERS_VALUE
         Price contains repetitive headers.
         
        PRICE_TABLE_REPETITIVE_HEADERS = 2;
        See Also:
        Constant Field Values
      • PRICE_TABLE_REPETITIVE_DESCRIPTION_VALUE

        public static final int PRICE_TABLE_REPETITIVE_DESCRIPTION_VALUE
         Price contains repetitive description.
         
        PRICE_TABLE_REPETITIVE_DESCRIPTION = 3;
        See Also:
        Constant Field Values
      • PRICE_TABLE_INCONSISTENT_ROWS_VALUE

        public static final int PRICE_TABLE_INCONSISTENT_ROWS_VALUE
         Price contains inconsistent items.
         
        PRICE_TABLE_INCONSISTENT_ROWS = 4;
        See Also:
        Constant Field Values
      • PRICE_DESCRIPTION_HAS_PRICE_QUALIFIERS_VALUE

        public static final int PRICE_DESCRIPTION_HAS_PRICE_QUALIFIERS_VALUE
         Price contains qualifiers in description.
         
        PRICE_DESCRIPTION_HAS_PRICE_QUALIFIERS = 5;
        See Also:
        Constant Field Values
      • PRICE_UNSUPPORTED_LANGUAGE_VALUE

        public static final int PRICE_UNSUPPORTED_LANGUAGE_VALUE
         Price contains an unsupported language.
         
        PRICE_UNSUPPORTED_LANGUAGE = 6;
        See Also:
        Constant Field Values
      • PRICE_TABLE_ROW_HEADER_TABLE_TYPE_MISMATCH_VALUE

        public static final int PRICE_TABLE_ROW_HEADER_TABLE_TYPE_MISMATCH_VALUE
         Price item header is not relevant to the price type.
         
        PRICE_TABLE_ROW_HEADER_TABLE_TYPE_MISMATCH = 7;
        See Also:
        Constant Field Values
      • PRICE_TABLE_ROW_HEADER_HAS_PROMOTIONAL_TEXT_VALUE

        public static final int PRICE_TABLE_ROW_HEADER_HAS_PROMOTIONAL_TEXT_VALUE
         Price item header has promotional text.
         
        PRICE_TABLE_ROW_HEADER_HAS_PROMOTIONAL_TEXT = 8;
        See Also:
        Constant Field Values
      • PRICE_TABLE_ROW_DESCRIPTION_NOT_RELEVANT_VALUE

        public static final int PRICE_TABLE_ROW_DESCRIPTION_NOT_RELEVANT_VALUE
         Price item description is not relevant to the item header.
         
        PRICE_TABLE_ROW_DESCRIPTION_NOT_RELEVANT = 9;
        See Also:
        Constant Field Values
      • PRICE_TABLE_ROW_DESCRIPTION_HAS_PROMOTIONAL_TEXT_VALUE

        public static final int PRICE_TABLE_ROW_DESCRIPTION_HAS_PROMOTIONAL_TEXT_VALUE
         Price item description contains promotional text.
         
        PRICE_TABLE_ROW_DESCRIPTION_HAS_PROMOTIONAL_TEXT = 10;
        See Also:
        Constant Field Values
      • PRICE_TABLE_ROW_HEADER_DESCRIPTION_REPETITIVE_VALUE

        public static final int PRICE_TABLE_ROW_HEADER_DESCRIPTION_REPETITIVE_VALUE
         Price item header and description are repetitive.
         
        PRICE_TABLE_ROW_HEADER_DESCRIPTION_REPETITIVE = 11;
        See Also:
        Constant Field Values
      • PRICE_TABLE_ROW_UNRATEABLE_VALUE

        public static final int PRICE_TABLE_ROW_UNRATEABLE_VALUE
         Price item is in a foreign language, nonsense, or can't be rated.
         
        PRICE_TABLE_ROW_UNRATEABLE = 12;
        See Also:
        Constant Field Values
      • PRICE_TABLE_ROW_PRICE_INVALID_VALUE

        public static final int PRICE_TABLE_ROW_PRICE_INVALID_VALUE
         Price item price is invalid or inaccurate.
         
        PRICE_TABLE_ROW_PRICE_INVALID = 13;
        See Also:
        Constant Field Values
      • PRICE_TABLE_ROW_URL_INVALID_VALUE

        public static final int PRICE_TABLE_ROW_URL_INVALID_VALUE
         Price item URL is invalid or irrelevant.
         
        PRICE_TABLE_ROW_URL_INVALID = 14;
        See Also:
        Constant Field Values
      • PRICE_HEADER_OR_DESCRIPTION_HAS_PRICE_VALUE

        public static final int PRICE_HEADER_OR_DESCRIPTION_HAS_PRICE_VALUE
         Price item header or description has price.
         
        PRICE_HEADER_OR_DESCRIPTION_HAS_PRICE = 15;
        See Also:
        Constant Field Values
      • STRUCTURED_SNIPPETS_HEADER_POLICY_VIOLATED_VALUE

        public static final int STRUCTURED_SNIPPETS_HEADER_POLICY_VIOLATED_VALUE
         Structured snippet values do not match the header.
         
        STRUCTURED_SNIPPETS_HEADER_POLICY_VIOLATED = 16;
        See Also:
        Constant Field Values
      • STRUCTURED_SNIPPETS_REPEATED_VALUES_VALUE

        public static final int STRUCTURED_SNIPPETS_REPEATED_VALUES_VALUE
         Structured snippet values are repeated.
         
        STRUCTURED_SNIPPETS_REPEATED_VALUES = 17;
        See Also:
        Constant Field Values
      • STRUCTURED_SNIPPETS_EDITORIAL_GUIDELINES_VALUE

        public static final int STRUCTURED_SNIPPETS_EDITORIAL_GUIDELINES_VALUE
         Structured snippet values violate editorial guidelines like punctuation.
         
        STRUCTURED_SNIPPETS_EDITORIAL_GUIDELINES = 18;
        See Also:
        Constant Field Values
      • STRUCTURED_SNIPPETS_HAS_PROMOTIONAL_TEXT_VALUE

        public static final int STRUCTURED_SNIPPETS_HAS_PROMOTIONAL_TEXT_VALUE
         Structured snippet contain promotional text.
         
        STRUCTURED_SNIPPETS_HAS_PROMOTIONAL_TEXT = 19;
        See Also:
        Constant Field Values
    • Method Detail

      • values

        public static FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason[] 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 (FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason c : FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason 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
        Specified by:
        getNumber in interface com.google.protobuf.ProtocolMessageEnum
      • valueOf

        @Deprecated
        public static FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason 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
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptor

        public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      • valueOf

        public static FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
        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:
        desc - 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