Package com.google.doubleclick
Interface AdxExt.DeviceExt.UserAgent.BrandVersionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AdxExt.DeviceExt.UserAgent.BrandVersion,AdxExt.DeviceExt.UserAgent.BrandVersion.Builder
- Enclosing class:
- AdxExt.DeviceExt.UserAgent
public static interface AdxExt.DeviceExt.UserAgent.BrandVersionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBrand()A brand identifier, for example, "Chrome" or "Windows".com.google.protobuf.ByteStringgetBrandBytes()A brand identifier, for example, "Chrome" or "Windows".StringgetVersion(int index)A sequence of version components, in descending hierarchical order (major, minor, micro, ...).com.google.protobuf.ByteStringgetVersionBytes(int index)A sequence of version components, in descending hierarchical order (major, minor, micro, ...).intgetVersionCount()A sequence of version components, in descending hierarchical order (major, minor, micro, ...).List<String>getVersionList()A sequence of version components, in descending hierarchical order (major, minor, micro, ...).booleanhasBrand()A brand identifier, for example, "Chrome" or "Windows".-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasBrand
boolean hasBrand()
A brand identifier, for example, "Chrome" or "Windows". The value may be sourced from the User-Agent Client Hints headers, representing either the user agent brand (from the Sec-CH-UA-Full-Version header) or the platform brand (from the Sec-CH-UA-Platform header).
optional string brand = 1;- Returns:
- Whether the brand field is set.
-
getBrand
String getBrand()
A brand identifier, for example, "Chrome" or "Windows". The value may be sourced from the User-Agent Client Hints headers, representing either the user agent brand (from the Sec-CH-UA-Full-Version header) or the platform brand (from the Sec-CH-UA-Platform header).
optional string brand = 1;- Returns:
- The brand.
-
getBrandBytes
com.google.protobuf.ByteString getBrandBytes()
A brand identifier, for example, "Chrome" or "Windows". The value may be sourced from the User-Agent Client Hints headers, representing either the user agent brand (from the Sec-CH-UA-Full-Version header) or the platform brand (from the Sec-CH-UA-Platform header).
optional string brand = 1;- Returns:
- The bytes for brand.
-
getVersionList
List<String> getVersionList()
A sequence of version components, in descending hierarchical order (major, minor, micro, ...).
repeated string version = 2;- Returns:
- A list containing the version.
-
getVersionCount
int getVersionCount()
A sequence of version components, in descending hierarchical order (major, minor, micro, ...).
repeated string version = 2;- Returns:
- The count of version.
-
getVersion
String getVersion(int index)
A sequence of version components, in descending hierarchical order (major, minor, micro, ...).
repeated string version = 2;- Parameters:
index- The index of the element to return.- Returns:
- The version at the given index.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes(int index)
A sequence of version components, in descending hierarchical order (major, minor, micro, ...).
repeated string version = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the version at the given index.
-
-