Interface BuildFailureOrBuilder

  • All Implemented Interfaces:
    com.google.protobuf.MessageLiteOrBuilder , com.google.protobuf.MessageOrBuilder

    
    public interface BuildFailureOrBuilder
     implements MessageOrBuilder
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract boolean hasErrors()
      Errors contains any errors that occurred during the build
      
      .xyz.block.ftl.language.v1.ErrorList errors = 1;
      abstract ErrorList getErrors()
      Errors contains any errors that occurred during the build
      
      .xyz.block.ftl.language.v1.ErrorList errors = 1;
      abstract ErrorListOrBuilder getErrorsOrBuilder()
      Errors contains any errors that occurred during the build
      
      .xyz.block.ftl.language.v1.ErrorList errors = 1;
      abstract boolean getInvalidateDependencies()
      Indicates the plugin determined that the dependencies in the BuildContext are out of date.
      If a Build stream is being kept open for automatic rebuilds, FTL will call GetDependencies, followed by
      BuildContextUpdated.
      
      bool invalidate_dependencies = 2;
      abstract List<String> getModifiedFilesList()
      Files modified during the build, relative to the build dir
      
      repeated string modified_files = 9;
      abstract int getModifiedFilesCount()
      Files modified during the build, relative to the build dir
      
      repeated string modified_files = 9;
      abstract String getModifiedFiles(int index)
      Files modified during the build, relative to the build dir
      
      repeated string modified_files = 9;
      abstract ByteString getModifiedFilesBytes(int index)
      Files modified during the build, relative to the build dir
      
      repeated string modified_files = 9;
      • Methods inherited from class com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
      • Methods inherited from class com.google.protobuf.MessageLiteOrBuilder

        getDefaultInstanceForType, isInitialized
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • hasErrors

         abstract boolean hasErrors()
        Errors contains any errors that occurred during the build
        
        .xyz.block.ftl.language.v1.ErrorList errors = 1;
        Returns:

        Whether the errors field is set.

      • getErrors

         abstract ErrorList getErrors()
        Errors contains any errors that occurred during the build
        
        .xyz.block.ftl.language.v1.ErrorList errors = 1;
        Returns:

        The errors.

      • getInvalidateDependencies

         abstract boolean getInvalidateDependencies()
        Indicates the plugin determined that the dependencies in the BuildContext are out of date.
        If a Build stream is being kept open for automatic rebuilds, FTL will call GetDependencies, followed by
        BuildContextUpdated.
        
        bool invalidate_dependencies = 2;
        Returns:

        The invalidateDependencies.

      • getModifiedFilesList

         abstract List<String> getModifiedFilesList()
        Files modified during the build, relative to the build dir
        
        repeated string modified_files = 9;
        Returns:

        A list containing the modifiedFiles.

      • getModifiedFilesCount

         abstract int getModifiedFilesCount()
        Files modified during the build, relative to the build dir
        
        repeated string modified_files = 9;
        Returns:

        The count of modifiedFiles.

      • getModifiedFiles

         abstract String getModifiedFiles(int index)
        Files modified during the build, relative to the build dir
        
        repeated string modified_files = 9;
        Parameters:
        index - The index of the element to return.
        Returns:

        The modifiedFiles at the given index.

      • getModifiedFilesBytes

         abstract ByteString getModifiedFilesBytes(int index)
        Files modified during the build, relative to the build dir
        
        repeated string modified_files = 9;
        Parameters:
        index - The index of the value to return.
        Returns:

        The bytes of the modifiedFiles at the given index.