Interface BuildEventStreamProtos.FileOrBuilder

    • Method Detail

      • getPathPrefixList

        java.util.List<java.lang.String> getPathPrefixList()
         A sequence of prefixes to apply to the file name to construct a full path.
         In most but not all cases, there will be 3 entries:
          1. A root output directory, eg "bazel-out"
          2. A configuration mnemonic, eg "k8-fastbuild"
          3. An output category, eg "genfiles"
         
        repeated string path_prefix = 4;
        Returns:
        A list containing the pathPrefix.
      • getPathPrefixCount

        int getPathPrefixCount()
         A sequence of prefixes to apply to the file name to construct a full path.
         In most but not all cases, there will be 3 entries:
          1. A root output directory, eg "bazel-out"
          2. A configuration mnemonic, eg "k8-fastbuild"
          3. An output category, eg "genfiles"
         
        repeated string path_prefix = 4;
        Returns:
        The count of pathPrefix.
      • getPathPrefix

        java.lang.String getPathPrefix​(int index)
         A sequence of prefixes to apply to the file name to construct a full path.
         In most but not all cases, there will be 3 entries:
          1. A root output directory, eg "bazel-out"
          2. A configuration mnemonic, eg "k8-fastbuild"
          3. An output category, eg "genfiles"
         
        repeated string path_prefix = 4;
        Parameters:
        index - The index of the element to return.
        Returns:
        The pathPrefix at the given index.
      • getPathPrefixBytes

        ByteString getPathPrefixBytes​(int index)
         A sequence of prefixes to apply to the file name to construct a full path.
         In most but not all cases, there will be 3 entries:
          1. A root output directory, eg "bazel-out"
          2. A configuration mnemonic, eg "k8-fastbuild"
          3. An output category, eg "genfiles"
         
        repeated string path_prefix = 4;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the pathPrefix at the given index.
      • getName

        java.lang.String getName()
         identifier indicating the nature of the file (e.g., "stdout", "stderr")
         
        string name = 1;
        Returns:
        The name.
      • getNameBytes

        ByteString getNameBytes()
         identifier indicating the nature of the file (e.g., "stdout", "stderr")
         
        string name = 1;
        Returns:
        The bytes for name.
      • hasUri

        boolean hasUri()
         A location where the contents of the file can be found. The string is
         encoded according to RFC2396.
         
        string uri = 2;
        Returns:
        Whether the uri field is set.
      • getUri

        java.lang.String getUri()
         A location where the contents of the file can be found. The string is
         encoded according to RFC2396.
         
        string uri = 2;
        Returns:
        The uri.
      • getUriBytes

        ByteString getUriBytes()
         A location where the contents of the file can be found. The string is
         encoded according to RFC2396.
         
        string uri = 2;
        Returns:
        The bytes for uri.
      • hasContents

        boolean hasContents()
         The contents of the file, if they are guaranteed to be short.
         
        bytes contents = 3;
        Returns:
        Whether the contents field is set.
      • getContents

        ByteString getContents()
         The contents of the file, if they are guaranteed to be short.
         
        bytes contents = 3;
        Returns:
        The contents.