Package com.google.cloud.channel.v1
Interface ValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Value,Value.Builder
public interface ValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetBoolValue()Represents a boolean value.doublegetDoubleValue()Represents a double value.longgetInt64Value()Represents an int64 value.Value.KindCasegetKindCase()com.google.protobuf.AnygetProtoValue()Represents an 'Any' proto value.com.google.protobuf.AnyOrBuildergetProtoValueOrBuilder()Represents an 'Any' proto value.StringgetStringValue()Represents a string value.com.google.protobuf.ByteStringgetStringValueBytes()Represents a string value.booleanhasBoolValue()Represents a boolean value.booleanhasDoubleValue()Represents a double value.booleanhasInt64Value()Represents an int64 value.booleanhasProtoValue()Represents an 'Any' proto value.booleanhasStringValue()Represents a string value.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasInt64Value
boolean hasInt64Value()
Represents an int64 value.
int64 int64_value = 1;- Returns:
- Whether the int64Value field is set.
-
getInt64Value
long getInt64Value()
Represents an int64 value.
int64 int64_value = 1;- Returns:
- The int64Value.
-
hasStringValue
boolean hasStringValue()
Represents a string value.
string string_value = 2;- Returns:
- Whether the stringValue field is set.
-
getStringValue
String getStringValue()
Represents a string value.
string string_value = 2;- Returns:
- The stringValue.
-
getStringValueBytes
com.google.protobuf.ByteString getStringValueBytes()
Represents a string value.
string string_value = 2;- Returns:
- The bytes for stringValue.
-
hasDoubleValue
boolean hasDoubleValue()
Represents a double value.
double double_value = 3;- Returns:
- Whether the doubleValue field is set.
-
getDoubleValue
double getDoubleValue()
Represents a double value.
double double_value = 3;- Returns:
- The doubleValue.
-
hasProtoValue
boolean hasProtoValue()
Represents an 'Any' proto value.
.google.protobuf.Any proto_value = 4;- Returns:
- Whether the protoValue field is set.
-
getProtoValue
com.google.protobuf.Any getProtoValue()
Represents an 'Any' proto value.
.google.protobuf.Any proto_value = 4;- Returns:
- The protoValue.
-
getProtoValueOrBuilder
com.google.protobuf.AnyOrBuilder getProtoValueOrBuilder()
Represents an 'Any' proto value.
.google.protobuf.Any proto_value = 4;
-
hasBoolValue
boolean hasBoolValue()
Represents a boolean value.
bool bool_value = 5;- Returns:
- Whether the boolValue field is set.
-
getBoolValue
boolean getBoolValue()
Represents a boolean value.
bool bool_value = 5;- Returns:
- The boolValue.
-
getKindCase
Value.KindCase getKindCase()
-
-