Package org.platanios.tensorflow.proto
Class CollectionDef.Builder
- java.lang.Object
-
- com.google.protobuf.AbstractMessageLite.Builder
-
- com.google.protobuf.AbstractMessage.Builder<BuilderType>
-
- com.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
- org.platanios.tensorflow.proto.CollectionDef.Builder
-
- All Implemented Interfaces:
com.google.protobuf.Message.Builder
,com.google.protobuf.MessageLite.Builder
,com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
,java.lang.Cloneable
,CollectionDefOrBuilder
- Enclosing class:
- CollectionDef
public static final class CollectionDef.Builder extends com.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder> implements CollectionDefOrBuilder
CollectionDef should cover most collections. To add a user-defined collection, do one of the following: 1. For simple data types, such as string, int, float: tf.add_to_collection("your_collection_name", your_simple_value) strings will be stored as bytes_list. 2. For Protobuf types, there are three ways to add them: 1) tf.add_to_collection("your_collection_name", your_proto.SerializeToString()) collection_def { key: "user_defined_bytes_collection" value { bytes_list { value: "queue_name: \"test_queue\"\n" } } } or 2) tf.add_to_collection("your_collection_name", str(your_proto)) collection_def { key: "user_defined_string_collection" value { bytes_list { value: "\n\ntest_queue" } } } or 3) any_buf = any_pb2.Any() tf.add_to_collection("your_collection_name", any_buf.Pack(your_proto)) collection_def { key: "user_defined_any_collection" value { any_list { value { type_url: "type.googleapis.com/tensorflow.QueueRunnerDef" value: "\n\ntest_queue" } } } } 3. For Python objects, implement to_proto() and from_proto(), and register them in the following manner: ops.register_proto_function("your_collection_name", proto_type, to_proto=YourPythonObject.to_proto, from_proto=YourPythonObject.from_proto) These functions will be invoked to serialize and de-serialize the collection. For example, ops.register_proto_function(ops.GraphKeys.GLOBAL_VARIABLES, proto_type=variable_pb2.VariableDef, to_proto=Variable.to_proto, from_proto=Variable.from_proto)
Protobuf typeorg.platanios.tensorflow.proto.CollectionDef
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CollectionDef.Builder
addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value)
CollectionDef
build()
CollectionDef
buildPartial()
CollectionDef.Builder
clear()
CollectionDef.Builder
clearAnyList()
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
CollectionDef.Builder
clearBytesList()
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
CollectionDef.Builder
clearField(com.google.protobuf.Descriptors.FieldDescriptor field)
CollectionDef.Builder
clearFloatList()
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
CollectionDef.Builder
clearInt64List()
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
CollectionDef.Builder
clearKind()
CollectionDef.Builder
clearNodeList()
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
CollectionDef.Builder
clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
CollectionDef.Builder
clone()
CollectionDef.AnyList
getAnyList()
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
CollectionDef.AnyList.Builder
getAnyListBuilder()
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
CollectionDef.AnyListOrBuilder
getAnyListOrBuilder()
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
CollectionDef.BytesList
getBytesList()
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
CollectionDef.BytesList.Builder
getBytesListBuilder()
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
CollectionDef.BytesListOrBuilder
getBytesListOrBuilder()
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
CollectionDef
getDefaultInstanceForType()
static com.google.protobuf.Descriptors.Descriptor
getDescriptor()
com.google.protobuf.Descriptors.Descriptor
getDescriptorForType()
CollectionDef.FloatList
getFloatList()
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
CollectionDef.FloatList.Builder
getFloatListBuilder()
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
CollectionDef.FloatListOrBuilder
getFloatListOrBuilder()
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
CollectionDef.Int64List
getInt64List()
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
CollectionDef.Int64List.Builder
getInt64ListBuilder()
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
CollectionDef.Int64ListOrBuilder
getInt64ListOrBuilder()
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
CollectionDef.KindCase
getKindCase()
CollectionDef.NodeList
getNodeList()
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
CollectionDef.NodeList.Builder
getNodeListBuilder()
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
CollectionDef.NodeListOrBuilder
getNodeListOrBuilder()
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
boolean
hasAnyList()
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
boolean
hasBytesList()
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
boolean
hasFloatList()
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
boolean
hasInt64List()
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
boolean
hasNodeList()
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable()
boolean
isInitialized()
CollectionDef.Builder
mergeAnyList(CollectionDef.AnyList value)
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
CollectionDef.Builder
mergeBytesList(CollectionDef.BytesList value)
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
CollectionDef.Builder
mergeFloatList(CollectionDef.FloatList value)
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
CollectionDef.Builder
mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
CollectionDef.Builder
mergeFrom(com.google.protobuf.Message other)
CollectionDef.Builder
mergeFrom(CollectionDef other)
CollectionDef.Builder
mergeInt64List(CollectionDef.Int64List value)
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
CollectionDef.Builder
mergeNodeList(CollectionDef.NodeList value)
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
CollectionDef.Builder
mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
CollectionDef.Builder
setAnyList(CollectionDef.AnyList value)
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
CollectionDef.Builder
setAnyList(CollectionDef.AnyList.Builder builderForValue)
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
CollectionDef.Builder
setBytesList(CollectionDef.BytesList value)
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
CollectionDef.Builder
setBytesList(CollectionDef.BytesList.Builder builderForValue)
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
CollectionDef.Builder
setField(com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value)
CollectionDef.Builder
setFloatList(CollectionDef.FloatList value)
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
CollectionDef.Builder
setFloatList(CollectionDef.FloatList.Builder builderForValue)
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
CollectionDef.Builder
setInt64List(CollectionDef.Int64List value)
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
CollectionDef.Builder
setInt64List(CollectionDef.Int64List.Builder builderForValue)
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
CollectionDef.Builder
setNodeList(CollectionDef.NodeList value)
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
CollectionDef.Builder
setNodeList(CollectionDef.NodeList.Builder builderForValue)
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
CollectionDef.Builder
setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value)
CollectionDef.Builder
setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
-
Methods inherited from class com.google.protobuf.GeneratedMessageV3.Builder
getAllFields, getField, getFieldBuilder, getOneofFieldDescriptor, getParentForChildren, getRepeatedField, getRepeatedFieldBuilder, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof, internalGetMapField, internalGetMutableMapField, isClean, markClean, newBuilderForField, onBuilt, onChanged, setUnknownFieldsProto3
-
Methods inherited from class com.google.protobuf.AbstractMessage.Builder
findInitializationErrors, getInitializationErrorString, internalMergeFrom, mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, newUninitializedMessageException, toString
-
Methods inherited from class com.google.protobuf.AbstractMessageLite.Builder
addAll, addAll, mergeFrom, newUninitializedMessageException
-
-
-
-
Method Detail
-
getDescriptor
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
-
internalGetFieldAccessorTable
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
- Specified by:
internalGetFieldAccessorTable
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
clear
public CollectionDef.Builder clear()
- Specified by:
clear
in interfacecom.google.protobuf.Message.Builder
- Specified by:
clear
in interfacecom.google.protobuf.MessageLite.Builder
- Overrides:
clear
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
getDescriptorForType
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.Message.Builder
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.MessageOrBuilder
- Overrides:
getDescriptorForType
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
getDefaultInstanceForType
public CollectionDef getDefaultInstanceForType()
- Specified by:
getDefaultInstanceForType
in interfacecom.google.protobuf.MessageLiteOrBuilder
- Specified by:
getDefaultInstanceForType
in interfacecom.google.protobuf.MessageOrBuilder
-
build
public CollectionDef build()
- Specified by:
build
in interfacecom.google.protobuf.Message.Builder
- Specified by:
build
in interfacecom.google.protobuf.MessageLite.Builder
-
buildPartial
public CollectionDef buildPartial()
- Specified by:
buildPartial
in interfacecom.google.protobuf.Message.Builder
- Specified by:
buildPartial
in interfacecom.google.protobuf.MessageLite.Builder
-
clone
public CollectionDef.Builder clone()
- Specified by:
clone
in interfacecom.google.protobuf.Message.Builder
- Specified by:
clone
in interfacecom.google.protobuf.MessageLite.Builder
- Overrides:
clone
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
setField
public CollectionDef.Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value)
- Specified by:
setField
in interfacecom.google.protobuf.Message.Builder
- Overrides:
setField
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
clearField
public CollectionDef.Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field)
- Specified by:
clearField
in interfacecom.google.protobuf.Message.Builder
- Overrides:
clearField
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
clearOneof
public CollectionDef.Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
- Specified by:
clearOneof
in interfacecom.google.protobuf.Message.Builder
- Overrides:
clearOneof
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
setRepeatedField
public CollectionDef.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value)
- Specified by:
setRepeatedField
in interfacecom.google.protobuf.Message.Builder
- Overrides:
setRepeatedField
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
addRepeatedField
public CollectionDef.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value)
- Specified by:
addRepeatedField
in interfacecom.google.protobuf.Message.Builder
- Overrides:
addRepeatedField
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
mergeFrom
public CollectionDef.Builder mergeFrom(com.google.protobuf.Message other)
- Specified by:
mergeFrom
in interfacecom.google.protobuf.Message.Builder
- Overrides:
mergeFrom
in classcom.google.protobuf.AbstractMessage.Builder<CollectionDef.Builder>
-
mergeFrom
public CollectionDef.Builder mergeFrom(CollectionDef other)
-
isInitialized
public final boolean isInitialized()
- Specified by:
isInitialized
in interfacecom.google.protobuf.MessageLiteOrBuilder
- Overrides:
isInitialized
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
mergeFrom
public CollectionDef.Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException
- Specified by:
mergeFrom
in interfacecom.google.protobuf.Message.Builder
- Specified by:
mergeFrom
in interfacecom.google.protobuf.MessageLite.Builder
- Overrides:
mergeFrom
in classcom.google.protobuf.AbstractMessage.Builder<CollectionDef.Builder>
- Throws:
java.io.IOException
-
getKindCase
public CollectionDef.KindCase getKindCase()
- Specified by:
getKindCase
in interfaceCollectionDefOrBuilder
-
clearKind
public CollectionDef.Builder clearKind()
-
hasNodeList
public boolean hasNodeList()
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
- Specified by:
hasNodeList
in interfaceCollectionDefOrBuilder
- Returns:
- Whether the nodeList field is set.
-
getNodeList
public CollectionDef.NodeList getNodeList()
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
- Specified by:
getNodeList
in interfaceCollectionDefOrBuilder
- Returns:
- The nodeList.
-
setNodeList
public CollectionDef.Builder setNodeList(CollectionDef.NodeList value)
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
-
setNodeList
public CollectionDef.Builder setNodeList(CollectionDef.NodeList.Builder builderForValue)
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
-
mergeNodeList
public CollectionDef.Builder mergeNodeList(CollectionDef.NodeList value)
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
-
clearNodeList
public CollectionDef.Builder clearNodeList()
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
-
getNodeListBuilder
public CollectionDef.NodeList.Builder getNodeListBuilder()
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
-
getNodeListOrBuilder
public CollectionDef.NodeListOrBuilder getNodeListOrBuilder()
.org.platanios.tensorflow.proto.CollectionDef.NodeList node_list = 1;
- Specified by:
getNodeListOrBuilder
in interfaceCollectionDefOrBuilder
-
hasBytesList
public boolean hasBytesList()
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
- Specified by:
hasBytesList
in interfaceCollectionDefOrBuilder
- Returns:
- Whether the bytesList field is set.
-
getBytesList
public CollectionDef.BytesList getBytesList()
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
- Specified by:
getBytesList
in interfaceCollectionDefOrBuilder
- Returns:
- The bytesList.
-
setBytesList
public CollectionDef.Builder setBytesList(CollectionDef.BytesList value)
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
-
setBytesList
public CollectionDef.Builder setBytesList(CollectionDef.BytesList.Builder builderForValue)
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
-
mergeBytesList
public CollectionDef.Builder mergeBytesList(CollectionDef.BytesList value)
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
-
clearBytesList
public CollectionDef.Builder clearBytesList()
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
-
getBytesListBuilder
public CollectionDef.BytesList.Builder getBytesListBuilder()
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
-
getBytesListOrBuilder
public CollectionDef.BytesListOrBuilder getBytesListOrBuilder()
.org.platanios.tensorflow.proto.CollectionDef.BytesList bytes_list = 2;
- Specified by:
getBytesListOrBuilder
in interfaceCollectionDefOrBuilder
-
hasInt64List
public boolean hasInt64List()
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
- Specified by:
hasInt64List
in interfaceCollectionDefOrBuilder
- Returns:
- Whether the int64List field is set.
-
getInt64List
public CollectionDef.Int64List getInt64List()
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
- Specified by:
getInt64List
in interfaceCollectionDefOrBuilder
- Returns:
- The int64List.
-
setInt64List
public CollectionDef.Builder setInt64List(CollectionDef.Int64List value)
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
-
setInt64List
public CollectionDef.Builder setInt64List(CollectionDef.Int64List.Builder builderForValue)
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
-
mergeInt64List
public CollectionDef.Builder mergeInt64List(CollectionDef.Int64List value)
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
-
clearInt64List
public CollectionDef.Builder clearInt64List()
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
-
getInt64ListBuilder
public CollectionDef.Int64List.Builder getInt64ListBuilder()
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
-
getInt64ListOrBuilder
public CollectionDef.Int64ListOrBuilder getInt64ListOrBuilder()
.org.platanios.tensorflow.proto.CollectionDef.Int64List int64_list = 3;
- Specified by:
getInt64ListOrBuilder
in interfaceCollectionDefOrBuilder
-
hasFloatList
public boolean hasFloatList()
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
- Specified by:
hasFloatList
in interfaceCollectionDefOrBuilder
- Returns:
- Whether the floatList field is set.
-
getFloatList
public CollectionDef.FloatList getFloatList()
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
- Specified by:
getFloatList
in interfaceCollectionDefOrBuilder
- Returns:
- The floatList.
-
setFloatList
public CollectionDef.Builder setFloatList(CollectionDef.FloatList value)
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
-
setFloatList
public CollectionDef.Builder setFloatList(CollectionDef.FloatList.Builder builderForValue)
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
-
mergeFloatList
public CollectionDef.Builder mergeFloatList(CollectionDef.FloatList value)
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
-
clearFloatList
public CollectionDef.Builder clearFloatList()
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
-
getFloatListBuilder
public CollectionDef.FloatList.Builder getFloatListBuilder()
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
-
getFloatListOrBuilder
public CollectionDef.FloatListOrBuilder getFloatListOrBuilder()
.org.platanios.tensorflow.proto.CollectionDef.FloatList float_list = 4;
- Specified by:
getFloatListOrBuilder
in interfaceCollectionDefOrBuilder
-
hasAnyList
public boolean hasAnyList()
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
- Specified by:
hasAnyList
in interfaceCollectionDefOrBuilder
- Returns:
- Whether the anyList field is set.
-
getAnyList
public CollectionDef.AnyList getAnyList()
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
- Specified by:
getAnyList
in interfaceCollectionDefOrBuilder
- Returns:
- The anyList.
-
setAnyList
public CollectionDef.Builder setAnyList(CollectionDef.AnyList value)
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
-
setAnyList
public CollectionDef.Builder setAnyList(CollectionDef.AnyList.Builder builderForValue)
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
-
mergeAnyList
public CollectionDef.Builder mergeAnyList(CollectionDef.AnyList value)
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
-
clearAnyList
public CollectionDef.Builder clearAnyList()
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
-
getAnyListBuilder
public CollectionDef.AnyList.Builder getAnyListBuilder()
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
-
getAnyListOrBuilder
public CollectionDef.AnyListOrBuilder getAnyListOrBuilder()
.org.platanios.tensorflow.proto.CollectionDef.AnyList any_list = 5;
- Specified by:
getAnyListOrBuilder
in interfaceCollectionDefOrBuilder
-
setUnknownFields
public final CollectionDef.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
- Specified by:
setUnknownFields
in interfacecom.google.protobuf.Message.Builder
- Overrides:
setUnknownFields
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
mergeUnknownFields
public final CollectionDef.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
- Specified by:
mergeUnknownFields
in interfacecom.google.protobuf.Message.Builder
- Overrides:
mergeUnknownFields
in classcom.google.protobuf.GeneratedMessageV3.Builder<CollectionDef.Builder>
-
-