public static interface Struct.StructuredValueOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
boolean |
getBoolValue()
Represents a boolean value.
|
Struct.DictValue |
getDictValue()
Represents a dict `Value`.
|
Struct.DictValueOrBuilder |
getDictValueOrBuilder()
Represents a dict `Value`.
|
double |
getFloat64Value()
Represents a double-precision floating-point value (a Python `float`).
|
long |
getInt64Value()
Represents a signed integer value, limited to 64 bits.
|
Struct.StructuredValue.KindCase |
getKindCase() |
Struct.ListValue |
getListValue()
Represents a list of `Value`.
|
Struct.ListValueOrBuilder |
getListValueOrBuilder()
Represents a list of `Value`.
|
Struct.NamedTupleValue |
getNamedTupleValue()
Represents Python's namedtuple.
|
Struct.NamedTupleValueOrBuilder |
getNamedTupleValueOrBuilder()
Represents Python's namedtuple.
|
Struct.NoneValue |
getNoneValue()
Represents None.
|
Struct.NoneValueOrBuilder |
getNoneValueOrBuilder()
Represents None.
|
String |
getStringValue()
Represents a string of Unicode characters stored in a Python `str`.
|
com.google.protobuf.ByteString |
getStringValueBytes()
Represents a string of Unicode characters stored in a Python `str`.
|
DataType |
getTensorDtypeValue()
Represents an enum value for dtype.
|
int |
getTensorDtypeValueValue()
Represents an enum value for dtype.
|
TensorShapeProto |
getTensorShapeValue()
Represents a TensorShape.
|
TensorShapeProtoOrBuilder |
getTensorShapeValueOrBuilder()
Represents a TensorShape.
|
Struct.TensorSpecProto |
getTensorSpecValue()
Represents a value for tf.TensorSpec.
|
Struct.TensorSpecProtoOrBuilder |
getTensorSpecValueOrBuilder()
Represents a value for tf.TensorSpec.
|
Struct.TupleValue |
getTupleValue()
Represents a tuple of `Value`.
|
Struct.TupleValueOrBuilder |
getTupleValueOrBuilder()
Represents a tuple of `Value`.
|
Struct.TypeSpecProto |
getTypeSpecValue()
Represents a value for tf.TypeSpec.
|
Struct.TypeSpecProtoOrBuilder |
getTypeSpecValueOrBuilder()
Represents a value for tf.TypeSpec.
|
boolean |
hasDictValue()
Represents a dict `Value`.
|
boolean |
hasListValue()
Represents a list of `Value`.
|
boolean |
hasNamedTupleValue()
Represents Python's namedtuple.
|
boolean |
hasNoneValue()
Represents None.
|
boolean |
hasTensorShapeValue()
Represents a TensorShape.
|
boolean |
hasTensorSpecValue()
Represents a value for tf.TensorSpec.
|
boolean |
hasTupleValue()
Represents a tuple of `Value`.
|
boolean |
hasTypeSpecValue()
Represents a value for tf.TypeSpec.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasNoneValue()
Represents None.
.tensorflow.NoneValue none_value = 1;
Struct.NoneValue getNoneValue()
Represents None.
.tensorflow.NoneValue none_value = 1;
Struct.NoneValueOrBuilder getNoneValueOrBuilder()
Represents None.
.tensorflow.NoneValue none_value = 1;
double getFloat64Value()
Represents a double-precision floating-point value (a Python `float`).
double float64_value = 11;
long getInt64Value()
Represents a signed integer value, limited to 64 bits. Larger values from Python's arbitrary-precision integers are unsupported.
sint64 int64_value = 12;
String getStringValue()
Represents a string of Unicode characters stored in a Python `str`. In Python 3, this is exactly what type `str` is. In Python 2, this is the UTF-8 encoding of the characters. For strings with ASCII characters only (as often used in TensorFlow code) there is effectively no difference between the language versions. The obsolescent `unicode` type of Python 2 is not supported here.
string string_value = 13;
com.google.protobuf.ByteString getStringValueBytes()
Represents a string of Unicode characters stored in a Python `str`. In Python 3, this is exactly what type `str` is. In Python 2, this is the UTF-8 encoding of the characters. For strings with ASCII characters only (as often used in TensorFlow code) there is effectively no difference between the language versions. The obsolescent `unicode` type of Python 2 is not supported here.
string string_value = 13;
boolean getBoolValue()
Represents a boolean value.
bool bool_value = 14;
boolean hasTensorShapeValue()
Represents a TensorShape.
.tensorflow.TensorShapeProto tensor_shape_value = 31;
TensorShapeProto getTensorShapeValue()
Represents a TensorShape.
.tensorflow.TensorShapeProto tensor_shape_value = 31;
TensorShapeProtoOrBuilder getTensorShapeValueOrBuilder()
Represents a TensorShape.
.tensorflow.TensorShapeProto tensor_shape_value = 31;
int getTensorDtypeValueValue()
Represents an enum value for dtype.
.tensorflow.DataType tensor_dtype_value = 32;
DataType getTensorDtypeValue()
Represents an enum value for dtype.
.tensorflow.DataType tensor_dtype_value = 32;
boolean hasTensorSpecValue()
Represents a value for tf.TensorSpec.
.tensorflow.TensorSpecProto tensor_spec_value = 33;
Struct.TensorSpecProto getTensorSpecValue()
Represents a value for tf.TensorSpec.
.tensorflow.TensorSpecProto tensor_spec_value = 33;
Struct.TensorSpecProtoOrBuilder getTensorSpecValueOrBuilder()
Represents a value for tf.TensorSpec.
.tensorflow.TensorSpecProto tensor_spec_value = 33;
boolean hasTypeSpecValue()
Represents a value for tf.TypeSpec.
.tensorflow.TypeSpecProto type_spec_value = 34;
Struct.TypeSpecProto getTypeSpecValue()
Represents a value for tf.TypeSpec.
.tensorflow.TypeSpecProto type_spec_value = 34;
Struct.TypeSpecProtoOrBuilder getTypeSpecValueOrBuilder()
Represents a value for tf.TypeSpec.
.tensorflow.TypeSpecProto type_spec_value = 34;
boolean hasListValue()
Represents a list of `Value`.
.tensorflow.ListValue list_value = 51;
Struct.ListValue getListValue()
Represents a list of `Value`.
.tensorflow.ListValue list_value = 51;
Struct.ListValueOrBuilder getListValueOrBuilder()
Represents a list of `Value`.
.tensorflow.ListValue list_value = 51;
boolean hasTupleValue()
Represents a tuple of `Value`.
.tensorflow.TupleValue tuple_value = 52;
Struct.TupleValue getTupleValue()
Represents a tuple of `Value`.
.tensorflow.TupleValue tuple_value = 52;
Struct.TupleValueOrBuilder getTupleValueOrBuilder()
Represents a tuple of `Value`.
.tensorflow.TupleValue tuple_value = 52;
boolean hasDictValue()
Represents a dict `Value`.
.tensorflow.DictValue dict_value = 53;
Struct.DictValue getDictValue()
Represents a dict `Value`.
.tensorflow.DictValue dict_value = 53;
Struct.DictValueOrBuilder getDictValueOrBuilder()
Represents a dict `Value`.
.tensorflow.DictValue dict_value = 53;
boolean hasNamedTupleValue()
Represents Python's namedtuple.
.tensorflow.NamedTupleValue named_tuple_value = 54;
Struct.NamedTupleValue getNamedTupleValue()
Represents Python's namedtuple.
.tensorflow.NamedTupleValue named_tuple_value = 54;
Struct.NamedTupleValueOrBuilder getNamedTupleValueOrBuilder()
Represents Python's namedtuple.
.tensorflow.NamedTupleValue named_tuple_value = 54;
Struct.StructuredValue.KindCase getKindCase()
Copyright © 2015–2019. All rights reserved.