Enum Class FeedItemErrorEnum.FeedItemError

java.lang.Object
java.lang.Enum<FeedItemErrorEnum.FeedItemError>
com.google.ads.googleads.v18.errors.FeedItemErrorEnum.FeedItemError
All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, Serializable, Comparable<FeedItemErrorEnum.FeedItemError>, Constable
Enclosing class:
FeedItemErrorEnum

public static enum FeedItemErrorEnum.FeedItemError extends Enum<FeedItemErrorEnum.FeedItemError> implements com.google.protobuf.ProtocolMessageEnum
 Enum describing possible feed item errors.
 
Protobuf enum google.ads.googleads.v18.errors.FeedItemErrorEnum.FeedItemError
  • Enum Constant Details

    • UNSPECIFIED

      public static final FeedItemErrorEnum.FeedItemError UNSPECIFIED
       Enum unspecified.
       
      UNSPECIFIED = 0;
    • UNKNOWN

      public static final FeedItemErrorEnum.FeedItemError UNKNOWN
       The received error code is not known in this version.
       
      UNKNOWN = 1;
    • CANNOT_CONVERT_ATTRIBUTE_VALUE_FROM_STRING

      public static final FeedItemErrorEnum.FeedItemError CANNOT_CONVERT_ATTRIBUTE_VALUE_FROM_STRING
       Cannot convert the feed attribute value from string to its real type.
       
      CANNOT_CONVERT_ATTRIBUTE_VALUE_FROM_STRING = 2;
    • CANNOT_OPERATE_ON_REMOVED_FEED_ITEM

      public static final FeedItemErrorEnum.FeedItemError CANNOT_OPERATE_ON_REMOVED_FEED_ITEM
       Cannot operate on removed feed item.
       
      CANNOT_OPERATE_ON_REMOVED_FEED_ITEM = 3;
    • DATE_TIME_MUST_BE_IN_ACCOUNT_TIME_ZONE

      public static final FeedItemErrorEnum.FeedItemError DATE_TIME_MUST_BE_IN_ACCOUNT_TIME_ZONE
       Date time zone does not match the account's time zone.
       
      DATE_TIME_MUST_BE_IN_ACCOUNT_TIME_ZONE = 4;
    • KEY_ATTRIBUTES_NOT_FOUND

      public static final FeedItemErrorEnum.FeedItemError KEY_ATTRIBUTES_NOT_FOUND
       Feed item with the key attributes could not be found.
       
      KEY_ATTRIBUTES_NOT_FOUND = 5;
    • INVALID_URL

      public static final FeedItemErrorEnum.FeedItemError INVALID_URL
       Url feed attribute value is not valid.
       
      INVALID_URL = 6;
    • MISSING_KEY_ATTRIBUTES

      public static final FeedItemErrorEnum.FeedItemError MISSING_KEY_ATTRIBUTES
       Some key attributes are missing.
       
      MISSING_KEY_ATTRIBUTES = 7;
    • KEY_ATTRIBUTES_NOT_UNIQUE

      public static final FeedItemErrorEnum.FeedItemError KEY_ATTRIBUTES_NOT_UNIQUE
       Feed item has same key attributes as another feed item.
       
      KEY_ATTRIBUTES_NOT_UNIQUE = 8;
    • CANNOT_MODIFY_KEY_ATTRIBUTE_VALUE

      public static final FeedItemErrorEnum.FeedItemError CANNOT_MODIFY_KEY_ATTRIBUTE_VALUE
       Cannot modify key attributes on an existing feed item.
       
      CANNOT_MODIFY_KEY_ATTRIBUTE_VALUE = 9;
    • SIZE_TOO_LARGE_FOR_MULTI_VALUE_ATTRIBUTE

      public static final FeedItemErrorEnum.FeedItemError SIZE_TOO_LARGE_FOR_MULTI_VALUE_ATTRIBUTE
       The feed attribute value is too large.
       
      SIZE_TOO_LARGE_FOR_MULTI_VALUE_ATTRIBUTE = 10;
    • LEGACY_FEED_TYPE_READ_ONLY

      public static final FeedItemErrorEnum.FeedItemError LEGACY_FEED_TYPE_READ_ONLY
       Feed is read only.
       
      LEGACY_FEED_TYPE_READ_ONLY = 11;
    • UNRECOGNIZED

      public static final FeedItemErrorEnum.FeedItemError UNRECOGNIZED
  • Field Details

    • UNSPECIFIED_VALUE

      public static final int UNSPECIFIED_VALUE
       Enum unspecified.
       
      UNSPECIFIED = 0;
      See Also:
    • UNKNOWN_VALUE

      public static final int UNKNOWN_VALUE
       The received error code is not known in this version.
       
      UNKNOWN = 1;
      See Also:
    • CANNOT_CONVERT_ATTRIBUTE_VALUE_FROM_STRING_VALUE

      public static final int CANNOT_CONVERT_ATTRIBUTE_VALUE_FROM_STRING_VALUE
       Cannot convert the feed attribute value from string to its real type.
       
      CANNOT_CONVERT_ATTRIBUTE_VALUE_FROM_STRING = 2;
      See Also:
    • CANNOT_OPERATE_ON_REMOVED_FEED_ITEM_VALUE

      public static final int CANNOT_OPERATE_ON_REMOVED_FEED_ITEM_VALUE
       Cannot operate on removed feed item.
       
      CANNOT_OPERATE_ON_REMOVED_FEED_ITEM = 3;
      See Also:
    • DATE_TIME_MUST_BE_IN_ACCOUNT_TIME_ZONE_VALUE

      public static final int DATE_TIME_MUST_BE_IN_ACCOUNT_TIME_ZONE_VALUE
       Date time zone does not match the account's time zone.
       
      DATE_TIME_MUST_BE_IN_ACCOUNT_TIME_ZONE = 4;
      See Also:
    • KEY_ATTRIBUTES_NOT_FOUND_VALUE

      public static final int KEY_ATTRIBUTES_NOT_FOUND_VALUE
       Feed item with the key attributes could not be found.
       
      KEY_ATTRIBUTES_NOT_FOUND = 5;
      See Also:
    • INVALID_URL_VALUE

      public static final int INVALID_URL_VALUE
       Url feed attribute value is not valid.
       
      INVALID_URL = 6;
      See Also:
    • MISSING_KEY_ATTRIBUTES_VALUE

      public static final int MISSING_KEY_ATTRIBUTES_VALUE
       Some key attributes are missing.
       
      MISSING_KEY_ATTRIBUTES = 7;
      See Also:
    • KEY_ATTRIBUTES_NOT_UNIQUE_VALUE

      public static final int KEY_ATTRIBUTES_NOT_UNIQUE_VALUE
       Feed item has same key attributes as another feed item.
       
      KEY_ATTRIBUTES_NOT_UNIQUE = 8;
      See Also:
    • CANNOT_MODIFY_KEY_ATTRIBUTE_VALUE_VALUE

      public static final int CANNOT_MODIFY_KEY_ATTRIBUTE_VALUE_VALUE
       Cannot modify key attributes on an existing feed item.
       
      CANNOT_MODIFY_KEY_ATTRIBUTE_VALUE = 9;
      See Also:
    • SIZE_TOO_LARGE_FOR_MULTI_VALUE_ATTRIBUTE_VALUE

      public static final int SIZE_TOO_LARGE_FOR_MULTI_VALUE_ATTRIBUTE_VALUE
       The feed attribute value is too large.
       
      SIZE_TOO_LARGE_FOR_MULTI_VALUE_ATTRIBUTE = 10;
      See Also:
    • LEGACY_FEED_TYPE_READ_ONLY_VALUE

      public static final int LEGACY_FEED_TYPE_READ_ONLY_VALUE
       Feed is read only.
       
      LEGACY_FEED_TYPE_READ_ONLY = 11;
      See Also:
  • Method Details

    • values

      public static FeedItemErrorEnum.FeedItemError[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FeedItemErrorEnum.FeedItemError valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      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 FeedItemErrorEnum.FeedItemError valueOf(int value)
      Deprecated.
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • forNumber

      public static FeedItemErrorEnum.FeedItemError forNumber(int value)
      Parameters:
      value - The numeric wire value of the corresponding enum entry.
      Returns:
      The enum associated with the given numeric wire value.
    • internalGetValueMap

      public static com.google.protobuf.Internal.EnumLiteMap<FeedItemErrorEnum.FeedItemError> internalGetValueMap()
    • 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 FeedItemErrorEnum.FeedItemError valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null