public final class CollectionDef extends com.google.protobuf.GeneratedMessageV3 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 type tensorflow.CollectionDef| Modifier and Type | Class and Description | 
|---|---|
static class  | 
CollectionDef.AnyList
 AnyList is used for collecting Any protos. 
 | 
static interface  | 
CollectionDef.AnyListOrBuilder  | 
static class  | 
CollectionDef.Builder
 CollectionDef should cover most collections. 
 | 
static class  | 
CollectionDef.BytesList
 BytesList is used for collecting strings and serialized protobufs. 
 | 
static interface  | 
CollectionDef.BytesListOrBuilder  | 
static class  | 
CollectionDef.FloatList
 FloatList is used for collecting float values. 
 | 
static interface  | 
CollectionDef.FloatListOrBuilder  | 
static class  | 
CollectionDef.Int64List
 Int64List is used for collecting int, int64 and long values. 
 | 
static interface  | 
CollectionDef.Int64ListOrBuilder  | 
static class  | 
CollectionDef.KindCase  | 
static class  | 
CollectionDef.NodeList
 NodeList is used for collecting nodes in graph. 
 | 
static interface  | 
CollectionDef.NodeListOrBuilder  | 
com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable| Modifier and Type | Field and Description | 
|---|---|
static int | 
ANY_LIST_FIELD_NUMBER  | 
static int | 
BYTES_LIST_FIELD_NUMBER  | 
static int | 
FLOAT_LIST_FIELD_NUMBER  | 
static int | 
INT64_LIST_FIELD_NUMBER  | 
static int | 
NODE_LIST_FIELD_NUMBER  | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
equals(Object obj)  | 
CollectionDef.AnyList | 
getAnyList()
.tensorflow.CollectionDef.AnyList any_list = 5; | 
CollectionDef.AnyListOrBuilder | 
getAnyListOrBuilder()
.tensorflow.CollectionDef.AnyList any_list = 5; | 
CollectionDef.BytesList | 
getBytesList()
.tensorflow.CollectionDef.BytesList bytes_list = 2; | 
CollectionDef.BytesListOrBuilder | 
getBytesListOrBuilder()
.tensorflow.CollectionDef.BytesList bytes_list = 2; | 
static CollectionDef | 
getDefaultInstance()  | 
CollectionDef | 
getDefaultInstanceForType()  | 
static com.google.protobuf.Descriptors.Descriptor | 
getDescriptor()  | 
CollectionDef.FloatList | 
getFloatList()
.tensorflow.CollectionDef.FloatList float_list = 4; | 
CollectionDef.FloatListOrBuilder | 
getFloatListOrBuilder()
.tensorflow.CollectionDef.FloatList float_list = 4; | 
CollectionDef.Int64List | 
getInt64List()
.tensorflow.CollectionDef.Int64List int64_list = 3; | 
CollectionDef.Int64ListOrBuilder | 
getInt64ListOrBuilder()
.tensorflow.CollectionDef.Int64List int64_list = 3; | 
CollectionDef.KindCase | 
getKindCase()  | 
CollectionDef.NodeList | 
getNodeList()
.tensorflow.CollectionDef.NodeList node_list = 1; | 
CollectionDef.NodeListOrBuilder | 
getNodeListOrBuilder()
.tensorflow.CollectionDef.NodeList node_list = 1; | 
com.google.protobuf.Parser<CollectionDef> | 
getParserForType()  | 
int | 
getSerializedSize()  | 
com.google.protobuf.UnknownFieldSet | 
getUnknownFields()  | 
int | 
hashCode()  | 
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable | 
internalGetFieldAccessorTable()  | 
boolean | 
isInitialized()  | 
static CollectionDef.Builder | 
newBuilder()  | 
static CollectionDef.Builder | 
newBuilder(CollectionDef prototype)  | 
CollectionDef.Builder | 
newBuilderForType()  | 
protected CollectionDef.Builder | 
newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)  | 
static CollectionDef | 
parseDelimitedFrom(InputStream input)  | 
static CollectionDef | 
parseDelimitedFrom(InputStream input,
                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)  | 
static CollectionDef | 
parseFrom(byte[] data)  | 
static CollectionDef | 
parseFrom(byte[] data,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)  | 
static CollectionDef | 
parseFrom(com.google.protobuf.ByteString data)  | 
static CollectionDef | 
parseFrom(com.google.protobuf.ByteString data,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)  | 
static CollectionDef | 
parseFrom(com.google.protobuf.CodedInputStream input)  | 
static CollectionDef | 
parseFrom(com.google.protobuf.CodedInputStream input,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)  | 
static CollectionDef | 
parseFrom(InputStream input)  | 
static CollectionDef | 
parseFrom(InputStream input,
         com.google.protobuf.ExtensionRegistryLite extensionRegistry)  | 
static com.google.protobuf.Parser<CollectionDef> | 
parser()  | 
CollectionDef.Builder | 
toBuilder()  | 
void | 
writeTo(com.google.protobuf.CodedOutputStream output)  | 
computeStringSize, computeStringSizeNoTag, getAllFields, getDescriptorForType, getField, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, hasField, hasOneof, internalGetMapField, makeExtensionsImmutable, newBuilderForType, parseDelimitedWithIOException, parseDelimitedWithIOException, parseUnknownField, parseWithIOException, parseWithIOException, parseWithIOException, parseWithIOException, serializeBooleanMapTo, serializeIntegerMapTo, serializeLongMapTo, serializeStringMapTo, writeReplace, writeString, writeStringNoTagfindInitializationErrors, getInitializationErrorString, hashBoolean, hashEnum, hashEnumList, hashFields, hashLong, toStringaddAll, checkByteStringIsUtf8, toByteArray, toByteString, writeDelimitedTo, writeToclone, finalize, getClass, notify, notifyAll, wait, wait, waitpublic static final int NODE_LIST_FIELD_NUMBER
public static final int BYTES_LIST_FIELD_NUMBER
public static final int INT64_LIST_FIELD_NUMBER
public static final int FLOAT_LIST_FIELD_NUMBER
public static final int ANY_LIST_FIELD_NUMBER
public final com.google.protobuf.UnknownFieldSet getUnknownFields()
getUnknownFields in interface com.google.protobuf.MessageOrBuildergetUnknownFields in class com.google.protobuf.GeneratedMessageV3public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3public CollectionDef.KindCase getKindCase()
getKindCase in interface CollectionDefOrBuilderpublic CollectionDef.NodeList getNodeList()
.tensorflow.CollectionDef.NodeList node_list = 1;getNodeList in interface CollectionDefOrBuilderpublic CollectionDef.NodeListOrBuilder getNodeListOrBuilder()
.tensorflow.CollectionDef.NodeList node_list = 1;getNodeListOrBuilder in interface CollectionDefOrBuilderpublic CollectionDef.BytesList getBytesList()
.tensorflow.CollectionDef.BytesList bytes_list = 2;getBytesList in interface CollectionDefOrBuilderpublic CollectionDef.BytesListOrBuilder getBytesListOrBuilder()
.tensorflow.CollectionDef.BytesList bytes_list = 2;getBytesListOrBuilder in interface CollectionDefOrBuilderpublic CollectionDef.Int64List getInt64List()
.tensorflow.CollectionDef.Int64List int64_list = 3;getInt64List in interface CollectionDefOrBuilderpublic CollectionDef.Int64ListOrBuilder getInt64ListOrBuilder()
.tensorflow.CollectionDef.Int64List int64_list = 3;getInt64ListOrBuilder in interface CollectionDefOrBuilderpublic CollectionDef.FloatList getFloatList()
.tensorflow.CollectionDef.FloatList float_list = 4;getFloatList in interface CollectionDefOrBuilderpublic CollectionDef.FloatListOrBuilder getFloatListOrBuilder()
.tensorflow.CollectionDef.FloatList float_list = 4;getFloatListOrBuilder in interface CollectionDefOrBuilderpublic CollectionDef.AnyList getAnyList()
.tensorflow.CollectionDef.AnyList any_list = 5;getAnyList in interface CollectionDefOrBuilderpublic CollectionDef.AnyListOrBuilder getAnyListOrBuilder()
.tensorflow.CollectionDef.AnyList any_list = 5;getAnyListOrBuilder in interface CollectionDefOrBuilderpublic final boolean isInitialized()
isInitialized in interface com.google.protobuf.MessageLiteOrBuilderisInitialized in class com.google.protobuf.GeneratedMessageV3public void writeTo(com.google.protobuf.CodedOutputStream output)
             throws IOException
writeTo in interface com.google.protobuf.MessageLitewriteTo in class com.google.protobuf.GeneratedMessageV3IOExceptionpublic int getSerializedSize()
getSerializedSize in interface com.google.protobuf.MessageLitegetSerializedSize in class com.google.protobuf.GeneratedMessageV3public boolean equals(Object obj)
equals in interface com.google.protobuf.Messageequals in class com.google.protobuf.AbstractMessagepublic int hashCode()
hashCode in interface com.google.protobuf.MessagehashCode in class com.google.protobuf.AbstractMessagepublic static CollectionDef parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static CollectionDef parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static CollectionDef parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static CollectionDef parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static CollectionDef parseFrom(InputStream input) throws IOException
IOExceptionpublic static CollectionDef parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
IOExceptionpublic static CollectionDef parseDelimitedFrom(InputStream input) throws IOException
IOExceptionpublic static CollectionDef parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
IOExceptionpublic static CollectionDef parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
IOExceptionpublic static CollectionDef parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
IOExceptionpublic CollectionDef.Builder newBuilderForType()
newBuilderForType in interface com.google.protobuf.MessagenewBuilderForType in interface com.google.protobuf.MessageLitepublic static CollectionDef.Builder newBuilder()
public static CollectionDef.Builder newBuilder(CollectionDef prototype)
public CollectionDef.Builder toBuilder()
toBuilder in interface com.google.protobuf.MessagetoBuilder in interface com.google.protobuf.MessageLiteprotected CollectionDef.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
newBuilderForType in class com.google.protobuf.GeneratedMessageV3public static CollectionDef getDefaultInstance()
public static com.google.protobuf.Parser<CollectionDef> parser()
public com.google.protobuf.Parser<CollectionDef> getParserForType()
getParserForType in interface com.google.protobuf.MessagegetParserForType in interface com.google.protobuf.MessageLitegetParserForType in class com.google.protobuf.GeneratedMessageV3public CollectionDef getDefaultInstanceForType()
getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuildergetDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilderCopyright © 2015–2017. All rights reserved.