Kind

enum Kind : ProtocolMessageEnum
Enumerates known semantic types, which are further mapped to their implementation types in each
semantic expression framework by implementing code.
Protobuf enum elide.page.Kind

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
val DETAIL_VALUE: Int = 2
Detail product view: information about a single product or product group. Produces view events
in analytics for each product or product group displayed to the user.
DETAIL = 2;
Link copied to clipboard
val MASTER_VALUE: Int = 1
Master products view: listing of multiple products. Produces impression events in analytics
for each section or product displayed to the user.
MASTER = 1;
Link copied to clipboard
Default content kind: generic web page or web application.
WEB_PAGE = 0;

Functions

Link copied to clipboard
open fun forNumber(value: Int): Kind
Link copied to clipboard
fun getDescriptor(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getDescriptorForType(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getNumber(): Int
Link copied to clipboard
fun getValueDescriptor(): Descriptors.EnumValueDescriptor
Link copied to clipboard
open fun internalGetValueMap(): Internal.EnumLiteMap<Kind>
Link copied to clipboard
open fun valueOf(desc: Descriptors.EnumValueDescriptor): Kind
open fun valueOf(value: Int): Kind

open fun valueOf(name: String): Kind

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.)

Link copied to clipboard
open fun values(): Array<Kind>

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.