Enum BrandStateEnum.BrandState
- java.lang.Object
-
- java.lang.Enum<BrandStateEnum.BrandState>
-
- com.google.ads.googleads.v15.enums.BrandStateEnum.BrandState
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,java.io.Serializable,java.lang.Comparable<BrandStateEnum.BrandState>
- Enclosing class:
- BrandStateEnum
public static enum BrandStateEnum.BrandState extends java.lang.Enum<BrandStateEnum.BrandState> implements com.google.protobuf.ProtocolMessageEnum
Enumeration of different brand states.
Protobuf enumgoogle.ads.googleads.v15.enums.BrandStateEnum.BrandState
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPROVEDWas a customer-scoped (unverified) brand, which got approved by business and added to the global list.CANCELLEDWas a customer-scoped (unverified) brand, but the request was canceled by customer and this brand id is no longer validDEPRECATEDBrand was globally available in past but is no longer a valid brand (based on business criteria)ENABLEDBrand is verified and globally available for selectionREJECTEDWas a customer-scoped (unverified) brand, but the request was rejected by internal business team and this brand id is no longer validUNKNOWNUsed for return value only.UNRECOGNIZEDUNSPECIFIEDNo value has been specified.UNVERIFIEDBrand is unverified and customer scoped, but can be selected by customer (only who requested for same) for targeting
-
Field Summary
Fields Modifier and Type Field Description static intAPPROVED_VALUEWas a customer-scoped (unverified) brand, which got approved by business and added to the global list.static intCANCELLED_VALUEWas a customer-scoped (unverified) brand, but the request was canceled by customer and this brand id is no longer validstatic intDEPRECATED_VALUEBrand was globally available in past but is no longer a valid brand (based on business criteria)static intENABLED_VALUEBrand is verified and globally available for selectionstatic intREJECTED_VALUEWas a customer-scoped (unverified) brand, but the request was rejected by internal business team and this brand id is no longer validstatic intUNKNOWN_VALUEUsed for return value only.static intUNSPECIFIED_VALUENo value has been specified.static intUNVERIFIED_VALUEBrand is unverified and customer scoped, but can be selected by customer (only who requested for same) for targeting
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static BrandStateEnum.BrandStateforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<BrandStateEnum.BrandState>internalGetValueMap()static BrandStateEnum.BrandStatevalueOf(int value)Deprecated.static BrandStateEnum.BrandStatevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static BrandStateEnum.BrandStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BrandStateEnum.BrandState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSPECIFIED
public static final BrandStateEnum.BrandState UNSPECIFIED
No value has been specified.
UNSPECIFIED = 0;
-
UNKNOWN
public static final BrandStateEnum.BrandState UNKNOWN
Used for return value only. Represents value unknown in this version.
UNKNOWN = 1;
-
ENABLED
public static final BrandStateEnum.BrandState ENABLED
Brand is verified and globally available for selection
ENABLED = 2;
-
DEPRECATED
public static final BrandStateEnum.BrandState DEPRECATED
Brand was globally available in past but is no longer a valid brand (based on business criteria)
DEPRECATED = 3;
-
UNVERIFIED
public static final BrandStateEnum.BrandState UNVERIFIED
Brand is unverified and customer scoped, but can be selected by customer (only who requested for same) for targeting
UNVERIFIED = 4;
-
APPROVED
public static final BrandStateEnum.BrandState APPROVED
Was a customer-scoped (unverified) brand, which got approved by business and added to the global list. Its assigned CKG MID should be used instead of this
APPROVED = 5;
-
CANCELLED
public static final BrandStateEnum.BrandState CANCELLED
Was a customer-scoped (unverified) brand, but the request was canceled by customer and this brand id is no longer valid
CANCELLED = 6;
-
REJECTED
public static final BrandStateEnum.BrandState REJECTED
Was a customer-scoped (unverified) brand, but the request was rejected by internal business team and this brand id is no longer valid
REJECTED = 7;
-
UNRECOGNIZED
public static final BrandStateEnum.BrandState UNRECOGNIZED
-
-
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
-
ENABLED_VALUE
public static final int ENABLED_VALUE
Brand is verified and globally available for selection
ENABLED = 2;- See Also:
- Constant Field Values
-
DEPRECATED_VALUE
public static final int DEPRECATED_VALUE
Brand was globally available in past but is no longer a valid brand (based on business criteria)
DEPRECATED = 3;- See Also:
- Constant Field Values
-
UNVERIFIED_VALUE
public static final int UNVERIFIED_VALUE
Brand is unverified and customer scoped, but can be selected by customer (only who requested for same) for targeting
UNVERIFIED = 4;- See Also:
- Constant Field Values
-
APPROVED_VALUE
public static final int APPROVED_VALUE
Was a customer-scoped (unverified) brand, which got approved by business and added to the global list. Its assigned CKG MID should be used instead of this
APPROVED = 5;- See Also:
- Constant Field Values
-
CANCELLED_VALUE
public static final int CANCELLED_VALUE
Was a customer-scoped (unverified) brand, but the request was canceled by customer and this brand id is no longer valid
CANCELLED = 6;- See Also:
- Constant Field Values
-
REJECTED_VALUE
public static final int REJECTED_VALUE
Was a customer-scoped (unverified) brand, but the request was rejected by internal business team and this brand id is no longer valid
REJECTED = 7;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static BrandStateEnum.BrandState[] 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 (BrandStateEnum.BrandState c : BrandStateEnum.BrandState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BrandStateEnum.BrandState 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 namejava.lang.NullPointerException- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static BrandStateEnum.BrandState 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 namejava.lang.NullPointerException- if the argument is null
-
forNumber
public static BrandStateEnum.BrandState 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<BrandStateEnum.BrandState> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static BrandStateEnum.BrandState 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 namejava.lang.NullPointerException- if the argument is null
-
-