public enum DataStoreType extends Enum<DataStoreType> implements com.google.protobuf.ProtocolMessageEnum
Type of a data store. Determines how search is performed in the data store.Protobuf enum
google.cloud.dialogflow.cx.v3.DataStoreType| Enum Constant and Description |
|---|
DATA_STORE_TYPE_UNSPECIFIED
Not specified.
|
PUBLIC_WEB
A data store that contains public web content.
|
STRUCTURED
A data store that contains structured data (for example FAQ).
|
UNRECOGNIZED |
UNSTRUCTURED
A data store that contains unstructured private data.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
DATA_STORE_TYPE_UNSPECIFIED_VALUE
Not specified.
|
static int |
PUBLIC_WEB_VALUE
A data store that contains public web content.
|
static int |
STRUCTURED_VALUE
A data store that contains structured data (for example FAQ).
|
static int |
UNSTRUCTURED_VALUE
A data store that contains unstructured private data.
|
| Modifier and Type | Method and Description |
|---|---|
static DataStoreType |
forNumber(int value) |
static com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptor() |
com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
com.google.protobuf.Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static com.google.protobuf.Internal.EnumLiteMap<DataStoreType> |
internalGetValueMap() |
static DataStoreType |
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
static DataStoreType |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static DataStoreType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataStoreType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataStoreType DATA_STORE_TYPE_UNSPECIFIED
Not specified. This value indicates that the data store type is not specified, so it will not be used during search.
DATA_STORE_TYPE_UNSPECIFIED = 0;public static final DataStoreType PUBLIC_WEB
A data store that contains public web content.
PUBLIC_WEB = 1;public static final DataStoreType UNSTRUCTURED
A data store that contains unstructured private data.
UNSTRUCTURED = 2;public static final DataStoreType STRUCTURED
A data store that contains structured data (for example FAQ).
STRUCTURED = 3;public static final DataStoreType UNRECOGNIZED
public static final int DATA_STORE_TYPE_UNSPECIFIED_VALUE
Not specified. This value indicates that the data store type is not specified, so it will not be used during search.
DATA_STORE_TYPE_UNSPECIFIED = 0;public static final int PUBLIC_WEB_VALUE
A data store that contains public web content.
PUBLIC_WEB = 1;public static final int UNSTRUCTURED_VALUE
A data store that contains unstructured private data.
UNSTRUCTURED = 2;public static final int STRUCTURED_VALUE
A data store that contains structured data (for example FAQ).
STRUCTURED = 3;public static DataStoreType[] values()
for (DataStoreType c : DataStoreType.values()) System.out.println(c);
public static DataStoreType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic final int getNumber()
getNumber in interface com.google.protobuf.Internal.EnumLitegetNumber in interface com.google.protobuf.ProtocolMessageEnum@Deprecated public static DataStoreType valueOf(int value)
forNumber(int) instead.value - The numeric wire value of the corresponding enum entry.public static DataStoreType forNumber(int value)
value - The numeric wire value of the corresponding enum entry.public static com.google.protobuf.Internal.EnumLiteMap<DataStoreType> internalGetValueMap()
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnumpublic final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnumpublic static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
public static DataStoreType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Copyright © 2025 Google LLC. All rights reserved.