Package org.tensorflow.metadata.v0
Interface BoolDomainOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BoolDomain,BoolDomain.Builder
public interface BoolDomainOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFalseValue()optional string false_value = 3;com.google.protobuf.ByteStringgetFalseValueBytes()optional string false_value = 3;StringgetName()Id of the domain.com.google.protobuf.ByteStringgetNameBytes()Id of the domain.StringgetTrueValue()Strings values for TRUE/FALSE.com.google.protobuf.ByteStringgetTrueValueBytes()Strings values for TRUE/FALSE.booleanhasFalseValue()optional string false_value = 3;booleanhasName()Id of the domain.booleanhasTrueValue()Strings values for TRUE/FALSE.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
Id of the domain. Required if the domain is defined at the schema level. If so, then the name must be unique within the schema.
optional string name = 1;- Returns:
- Whether the name field is set.
-
getName
String getName()
Id of the domain. Required if the domain is defined at the schema level. If so, then the name must be unique within the schema.
optional string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Id of the domain. Required if the domain is defined at the schema level. If so, then the name must be unique within the schema.
optional string name = 1;- Returns:
- The bytes for name.
-
hasTrueValue
boolean hasTrueValue()
Strings values for TRUE/FALSE.
optional string true_value = 2;- Returns:
- Whether the trueValue field is set.
-
getTrueValue
String getTrueValue()
Strings values for TRUE/FALSE.
optional string true_value = 2;- Returns:
- The trueValue.
-
getTrueValueBytes
com.google.protobuf.ByteString getTrueValueBytes()
Strings values for TRUE/FALSE.
optional string true_value = 2;- Returns:
- The bytes for trueValue.
-
hasFalseValue
boolean hasFalseValue()
optional string false_value = 3;- Returns:
- Whether the falseValue field is set.
-
getFalseValue
String getFalseValue()
optional string false_value = 3;- Returns:
- The falseValue.
-
getFalseValueBytes
com.google.protobuf.ByteString getFalseValueBytes()
optional string false_value = 3;- Returns:
- The bytes for falseValue.
-
-