com.google.protobuf
Class DescriptorProtos.FileDescriptorSet.Builder

java.lang.Object
  extended by com.google.protobuf.AbstractMessage.Builder<BuilderType>
      extended by com.google.protobuf.GeneratedMessage.Builder<DescriptorProtos.FileDescriptorSet.Builder>
          extended by com.google.protobuf.DescriptorProtos.FileDescriptorSet.Builder
All Implemented Interfaces:
Message.Builder, java.lang.Cloneable
Enclosing class:
DescriptorProtos.FileDescriptorSet

public static final class DescriptorProtos.FileDescriptorSet.Builder
extends GeneratedMessage.Builder<DescriptorProtos.FileDescriptorSet.Builder>


Method Summary
 DescriptorProtos.FileDescriptorSet.Builder addAllFile(java.lang.Iterable<? extends DescriptorProtos.FileDescriptorProto> values)
           
 DescriptorProtos.FileDescriptorSet.Builder addFile(DescriptorProtos.FileDescriptorProto.Builder builderForValue)
           
 DescriptorProtos.FileDescriptorSet.Builder addFile(DescriptorProtos.FileDescriptorProto value)
           
 DescriptorProtos.FileDescriptorSet build()
          Construct the final message.
 DescriptorProtos.FileDescriptorSet buildPartial()
          Like Message.Builder.build(), but does not throw an exception if the message is missing required fields.
 DescriptorProtos.FileDescriptorSet.Builder clear()
          Resets all fields to their default values.
 DescriptorProtos.FileDescriptorSet.Builder clearFile()
           
 DescriptorProtos.FileDescriptorSet.Builder clone()
          Clones the Builder.
 DescriptorProtos.FileDescriptorSet getDefaultInstanceForType()
          Get the message's type's default instance.
 Descriptors.Descriptor getDescriptorForType()
          Get the message's type's descriptor.
 DescriptorProtos.FileDescriptorProto getFile(int index)
           
 int getFileCount()
           
 java.util.List<DescriptorProtos.FileDescriptorProto> getFileList()
           
protected  DescriptorProtos.FileDescriptorSet internalGetResult()
          Get the message being built.
 DescriptorProtos.FileDescriptorSet.Builder mergeFrom(CodedInputStream input)
          Parses a message of this type from the input and merges it with this message, as if using Message.Builder.mergeFrom(Message).
 DescriptorProtos.FileDescriptorSet.Builder mergeFrom(CodedInputStream input, ExtensionRegistry extensionRegistry)
          Like Message.Builder.mergeFrom(CodedInputStream), but also parses extensions.
 DescriptorProtos.FileDescriptorSet.Builder mergeFrom(DescriptorProtos.FileDescriptorSet other)
           
 DescriptorProtos.FileDescriptorSet.Builder mergeFrom(Message other)
          Merge other into the message being built.
 DescriptorProtos.FileDescriptorSet.Builder setFile(int index, DescriptorProtos.FileDescriptorProto.Builder builderForValue)
           
 DescriptorProtos.FileDescriptorSet.Builder setFile(int index, DescriptorProtos.FileDescriptorProto value)
           
 
Methods inherited from class com.google.protobuf.GeneratedMessage.Builder
addAll, addRepeatedField, clearField, getAllFields, getField, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, isInitialized, mergeUnknownFields, newBuilderForField, parseUnknownField, setField, setRepeatedField, setUnknownFields
 
Methods inherited from class com.google.protobuf.AbstractMessage.Builder
mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

internalGetResult

protected DescriptorProtos.FileDescriptorSet internalGetResult()
Description copied from class: GeneratedMessage.Builder
Get the message being built. We don't just pass this to the constructor because it becomes null when build() is called.

Specified by:
internalGetResult in class GeneratedMessage.Builder<DescriptorProtos.FileDescriptorSet.Builder>

clear

public DescriptorProtos.FileDescriptorSet.Builder clear()
Description copied from interface: Message.Builder
Resets all fields to their default values.

Specified by:
clear in interface Message.Builder
Overrides:
clear in class AbstractMessage.Builder<DescriptorProtos.FileDescriptorSet.Builder>

clone

public DescriptorProtos.FileDescriptorSet.Builder clone()
Description copied from interface: Message.Builder
Clones the Builder.

Specified by:
clone in interface Message.Builder
Specified by:
clone in class AbstractMessage.Builder<DescriptorProtos.FileDescriptorSet.Builder>
See Also:
Object.clone()

getDescriptorForType

public Descriptors.Descriptor getDescriptorForType()
Description copied from interface: Message.Builder
Get the message's type's descriptor. See Message.getDescriptorForType().

Specified by:
getDescriptorForType in interface Message.Builder
Overrides:
getDescriptorForType in class GeneratedMessage.Builder<DescriptorProtos.FileDescriptorSet.Builder>

getDefaultInstanceForType

public DescriptorProtos.FileDescriptorSet getDefaultInstanceForType()
Description copied from interface: Message.Builder
Get the message's type's default instance. See Message.getDefaultInstanceForType().


build

public DescriptorProtos.FileDescriptorSet build()
Description copied from interface: Message.Builder
Construct the final message. Once this is called, the Builder is no longer valid, and calling any other method may throw a NullPointerException. If you need to continue working with the builder after calling build(), clone() it first.


buildPartial

public DescriptorProtos.FileDescriptorSet buildPartial()
Description copied from interface: Message.Builder
Like Message.Builder.build(), but does not throw an exception if the message is missing required fields. Instead, a partial message is returned.


mergeFrom

public DescriptorProtos.FileDescriptorSet.Builder mergeFrom(Message other)
Description copied from interface: Message.Builder
Merge other into the message being built. other must have the exact same type as this (i.e. getDescriptorForType() == other.getDescriptorForType()). Merging occurs as follows. For each field:
* For singular primitive fields, if the field is set in other, then other's value overwrites the value in this message.
* For singular message fields, if the field is set in other, it is merged into the corresponding sub-message of this message using the same merging rules.
* For repeated fields, the elements in other are concatenated with the elements in this message. This is equivalent to the Message::MergeFrom method in C++.

Specified by:
mergeFrom in interface Message.Builder
Overrides:
mergeFrom in class GeneratedMessage.Builder<DescriptorProtos.FileDescriptorSet.Builder>

mergeFrom

public DescriptorProtos.FileDescriptorSet.Builder mergeFrom(DescriptorProtos.FileDescriptorSet other)

mergeFrom

public DescriptorProtos.FileDescriptorSet.Builder mergeFrom(CodedInputStream input)
                                                     throws java.io.IOException
Description copied from interface: Message.Builder
Parses a message of this type from the input and merges it with this message, as if using Message.Builder.mergeFrom(Message).

Warning: This does not verify that all required fields are present in the input message. If you call Message.Builder.build() without setting all required fields, it will throw an UninitializedMessageException, which is a RuntimeException and thus might not be caught. There are a few good ways to deal with this:

Note: The caller should call CodedInputStream.checkLastTagWas(int) after calling this to verify that the last tag seen was the appropriate end-group tag, or zero for EOF.

Specified by:
mergeFrom in interface Message.Builder
Overrides:
mergeFrom in class AbstractMessage.Builder<DescriptorProtos.FileDescriptorSet.Builder>
Throws:
java.io.IOException

mergeFrom

public DescriptorProtos.FileDescriptorSet.Builder mergeFrom(CodedInputStream input,
                                                            ExtensionRegistry extensionRegistry)
                                                     throws java.io.IOException
Description copied from interface: Message.Builder
Like Message.Builder.mergeFrom(CodedInputStream), but also parses extensions. The extensions that you want to be able to parse must be registered in extensionRegistry. Extensions not in the registry will be treated as unknown fields.

Specified by:
mergeFrom in interface Message.Builder
Overrides:
mergeFrom in class AbstractMessage.Builder<DescriptorProtos.FileDescriptorSet.Builder>
Throws:
java.io.IOException

getFileList

public java.util.List<DescriptorProtos.FileDescriptorProto> getFileList()

getFileCount

public int getFileCount()

getFile

public DescriptorProtos.FileDescriptorProto getFile(int index)

setFile

public DescriptorProtos.FileDescriptorSet.Builder setFile(int index,
                                                          DescriptorProtos.FileDescriptorProto value)

setFile

public DescriptorProtos.FileDescriptorSet.Builder setFile(int index,
                                                          DescriptorProtos.FileDescriptorProto.Builder builderForValue)

addFile

public DescriptorProtos.FileDescriptorSet.Builder addFile(DescriptorProtos.FileDescriptorProto value)

addFile

public DescriptorProtos.FileDescriptorSet.Builder addFile(DescriptorProtos.FileDescriptorProto.Builder builderForValue)

addAllFile

public DescriptorProtos.FileDescriptorSet.Builder addAllFile(java.lang.Iterable<? extends DescriptorProtos.FileDescriptorProto> values)

clearFile

public DescriptorProtos.FileDescriptorSet.Builder clearFile()


Copyright © 2008-2009. All Rights Reserved.