public interface TagFieldOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getBoolValue()
public abstract boolean getBoolValue()Holds the value for a tag field with boolean type.
bool bool_value = 4;
| Type | Description |
| boolean | The boolValue. |
getDisplayName()
public abstract String getDisplayName()Output only. The display name of this field.
string display_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Type | Description |
| String | The displayName. |
getDisplayNameBytes()
public abstract ByteString getDisplayNameBytes()Output only. The display name of this field.
string display_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Type | Description |
| ByteString | The bytes for displayName. |
getDoubleValue()
public abstract double getDoubleValue()Holds the value for a tag field with double type.
double double_value = 2;
| Type | Description |
| double | The doubleValue. |
getEnumValue()
public abstract TagField.EnumValue getEnumValue()Holds the value for a tag field with enum type. This value must be one of the allowed values in the definition of this enum.
.google.cloud.datacatalog.v1beta1.TagField.EnumValue enum_value = 6;
| Type | Description |
| TagField.EnumValue | The enumValue. |
getEnumValueOrBuilder()
public abstract TagField.EnumValueOrBuilder getEnumValueOrBuilder()Holds the value for a tag field with enum type. This value must be one of the allowed values in the definition of this enum.
.google.cloud.datacatalog.v1beta1.TagField.EnumValue enum_value = 6;
| Type | Description |
| TagField.EnumValueOrBuilder |
getKindCase()
public abstract TagField.KindCase getKindCase()| Type | Description |
| TagField.KindCase |
getOrder()
public abstract int getOrder()Output only. The order of this field with respect to other fields in this tag. It can be set in Tag. For example, a higher value can indicate a more important field. The value can be negative. Multiple fields can have the same order, and field orders within a tag do not have to be sequential.
int32 order = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Type | Description |
| int | The order. |
getStringValue()
public abstract String getStringValue()Holds the value for a tag field with string type.
string string_value = 3;
| Type | Description |
| String | The stringValue. |
getStringValueBytes()
public abstract ByteString getStringValueBytes()Holds the value for a tag field with string type.
string string_value = 3;
| Type | Description |
| ByteString | The bytes for stringValue. |
getTimestampValue()
public abstract Timestamp getTimestampValue()Holds the value for a tag field with timestamp type.
.google.protobuf.Timestamp timestamp_value = 5;
| Type | Description |
| Timestamp | The timestampValue. |
getTimestampValueOrBuilder()
public abstract TimestampOrBuilder getTimestampValueOrBuilder()Holds the value for a tag field with timestamp type.
.google.protobuf.Timestamp timestamp_value = 5;
| Type | Description |
| TimestampOrBuilder |
hasBoolValue()
public abstract boolean hasBoolValue()Holds the value for a tag field with boolean type.
bool bool_value = 4;
| Type | Description |
| boolean | Whether the boolValue field is set. |
hasDoubleValue()
public abstract boolean hasDoubleValue()Holds the value for a tag field with double type.
double double_value = 2;
| Type | Description |
| boolean | Whether the doubleValue field is set. |
hasEnumValue()
public abstract boolean hasEnumValue()Holds the value for a tag field with enum type. This value must be one of the allowed values in the definition of this enum.
.google.cloud.datacatalog.v1beta1.TagField.EnumValue enum_value = 6;
| Type | Description |
| boolean | Whether the enumValue field is set. |
hasStringValue()
public abstract boolean hasStringValue()Holds the value for a tag field with string type.
string string_value = 3;
| Type | Description |
| boolean | Whether the stringValue field is set. |
hasTimestampValue()
public abstract boolean hasTimestampValue()Holds the value for a tag field with timestamp type.
.google.protobuf.Timestamp timestamp_value = 5;
| Type | Description |
| boolean | Whether the timestampValue field is set. |