Class TextDelta.Builder
- 
                    
                    - All Implemented Interfaces:
 
 public final class TextDelta.BuilderA builder for TextDelta. 
- 
                
                    
                    - 
                                
                            
                                Method SummaryModifier and Type Method Description final TextDelta.Builderannotations(List<AnnotationDelta> annotations)final TextDelta.Builderannotations(JsonField<List<AnnotationDelta>> annotations)Sets Builder.annotations to an arbitrary JSON value. final TextDelta.BuilderaddAnnotation(AnnotationDelta annotation)Adds a single AnnotationDelta to annotations. final TextDelta.BuilderaddAnnotation(FileCitationDeltaAnnotation fileCitation)Alias for calling addAnnotation with AnnotationDelta.ofFileCitation(fileCitation).final TextDelta.BuilderaddAnnotation(FilePathDeltaAnnotation filePath)Alias for calling addAnnotation with AnnotationDelta.ofFilePath(filePath).final TextDelta.BuilderaddFileCitationAnnotation(Long index)Alias for calling addAnnotation with the following: FileCitationDeltaAnnotation.builder() .index(index) .build()final TextDelta.BuilderaddFilePathAnnotation(Long index)Alias for calling addAnnotation with the following: FilePathDeltaAnnotation.builder() .index(index) .build()final TextDelta.Buildervalue(String value)The data that makes up the text. final TextDelta.Buildervalue(JsonField<String> value)Sets Builder.value to an arbitrary JSON value. final TextDelta.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final TextDelta.BuilderputAdditionalProperty(String key, JsonValue value)final TextDelta.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final TextDelta.BuilderremoveAdditionalProperty(String key)final TextDelta.BuilderremoveAllAdditionalProperties(Set<String> keys)final TextDeltabuild()Returns an immutable instance of TextDelta. - 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        annotationsfinal TextDelta.Builder annotations(List<AnnotationDelta> annotations) 
 - 
                                        annotationsfinal TextDelta.Builder annotations(JsonField<List<AnnotationDelta>> annotations) Sets Builder.annotations to an arbitrary JSON value. You should usually call Builder.annotations with a well-typed List<AnnotationDelta>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
 - 
                                        addAnnotationfinal TextDelta.Builder addAnnotation(AnnotationDelta annotation) Adds a single AnnotationDelta to annotations. 
 - 
                                        addAnnotationfinal TextDelta.Builder addAnnotation(FileCitationDeltaAnnotation fileCitation) Alias for calling addAnnotation with AnnotationDelta.ofFileCitation(fileCitation).
 - 
                                        addAnnotationfinal TextDelta.Builder addAnnotation(FilePathDeltaAnnotation filePath) Alias for calling addAnnotation with AnnotationDelta.ofFilePath(filePath).
 - 
                                        addFileCitationAnnotationfinal TextDelta.Builder addFileCitationAnnotation(Long index) Alias for calling addAnnotation with the following: FileCitationDeltaAnnotation.builder() .index(index) .build()
 - 
                                        addFilePathAnnotationfinal TextDelta.Builder addFilePathAnnotation(Long index) Alias for calling addAnnotation with the following: FilePathDeltaAnnotation.builder() .index(index) .build()
 - 
                                        valuefinal TextDelta.Builder value(String value) The data that makes up the text. 
 - 
                                        valuefinal TextDelta.Builder value(JsonField<String> value) Sets Builder.value to an arbitrary JSON value. You should usually call Builder.value with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        additionalPropertiesfinal TextDelta.Builder additionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        putAdditionalPropertyfinal TextDelta.Builder putAdditionalProperty(String key, JsonValue value) 
 - 
                                        putAllAdditionalPropertiesfinal TextDelta.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        removeAdditionalPropertyfinal TextDelta.Builder removeAdditionalProperty(String key) 
 - 
                                        removeAllAdditionalPropertiesfinal TextDelta.Builder removeAllAdditionalProperties(Set<String> keys) 
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-