Interface Deps.DependenciesOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Deps.Dependencies, Deps.Dependencies.Builder
    Enclosing class:
    Deps

    public static interface Deps.DependenciesOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getContainedPackage​(int index)
      Packages contained in the output jar, sorted alphabetically.
      com.google.protobuf.ByteString getContainedPackageBytes​(int index)
      Packages contained in the output jar, sorted alphabetically.
      int getContainedPackageCount()
      Packages contained in the output jar, sorted alphabetically.
      java.util.List<java.lang.String> getContainedPackageList()
      Packages contained in the output jar, sorted alphabetically.
      Deps.Dependency getDependency​(int index)
      repeated .blaze_deps.Dependency dependency = 1;
      int getDependencyCount()
      repeated .blaze_deps.Dependency dependency = 1;
      java.util.List<Deps.Dependency> getDependencyList()
      repeated .blaze_deps.Dependency dependency = 1;
      Deps.DependencyOrBuilder getDependencyOrBuilder​(int index)
      repeated .blaze_deps.Dependency dependency = 1;
      java.util.List<? extends Deps.DependencyOrBuilder> getDependencyOrBuilderList()
      repeated .blaze_deps.Dependency dependency = 1;
      boolean getRequiresReducedClasspathFallback()
      If the Java action was started with a reduced classpath and an error occurred suggesting that it should be rerun with the full classpath, this will be true.
      java.lang.String getRuleLabel()
      Name of the rule being analyzed.
      com.google.protobuf.ByteString getRuleLabelBytes()
      Name of the rule being analyzed.
      boolean getSuccess()
      Whether the action was successful; even when compilation fails, partial dependency information can be useful.
      boolean hasRequiresReducedClasspathFallback()
      If the Java action was started with a reduced classpath and an error occurred suggesting that it should be rerun with the full classpath, this will be true.
      boolean hasRuleLabel()
      Name of the rule being analyzed.
      boolean hasSuccess()
      Whether the action was successful; even when compilation fails, partial dependency information can be useful.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getDependencyList

        java.util.List<Deps.Dependency> getDependencyList()
        repeated .blaze_deps.Dependency dependency = 1;
      • getDependency

        Deps.Dependency getDependency​(int index)
        repeated .blaze_deps.Dependency dependency = 1;
      • getDependencyCount

        int getDependencyCount()
        repeated .blaze_deps.Dependency dependency = 1;
      • getDependencyOrBuilderList

        java.util.List<? extends Deps.DependencyOrBuilder> getDependencyOrBuilderList()
        repeated .blaze_deps.Dependency dependency = 1;
      • getDependencyOrBuilder

        Deps.DependencyOrBuilder getDependencyOrBuilder​(int index)
        repeated .blaze_deps.Dependency dependency = 1;
      • hasRuleLabel

        boolean hasRuleLabel()
         Name of the rule being analyzed.
         
        optional string rule_label = 2;
        Returns:
        Whether the ruleLabel field is set.
      • getRuleLabel

        java.lang.String getRuleLabel()
         Name of the rule being analyzed.
         
        optional string rule_label = 2;
        Returns:
        The ruleLabel.
      • getRuleLabelBytes

        com.google.protobuf.ByteString getRuleLabelBytes()
         Name of the rule being analyzed.
         
        optional string rule_label = 2;
        Returns:
        The bytes for ruleLabel.
      • hasSuccess

        boolean hasSuccess()
         Whether the action was successful; even when compilation fails, partial
         dependency information can be useful.
         
        optional bool success = 3;
        Returns:
        Whether the success field is set.
      • getSuccess

        boolean getSuccess()
         Whether the action was successful; even when compilation fails, partial
         dependency information can be useful.
         
        optional bool success = 3;
        Returns:
        The success.
      • getContainedPackageList

        java.util.List<java.lang.String> getContainedPackageList()
         Packages contained in the output jar, sorted alphabetically.
         
        repeated string contained_package = 4;
        Returns:
        A list containing the containedPackage.
      • getContainedPackageCount

        int getContainedPackageCount()
         Packages contained in the output jar, sorted alphabetically.
         
        repeated string contained_package = 4;
        Returns:
        The count of containedPackage.
      • getContainedPackage

        java.lang.String getContainedPackage​(int index)
         Packages contained in the output jar, sorted alphabetically.
         
        repeated string contained_package = 4;
        Parameters:
        index - The index of the element to return.
        Returns:
        The containedPackage at the given index.
      • getContainedPackageBytes

        com.google.protobuf.ByteString getContainedPackageBytes​(int index)
         Packages contained in the output jar, sorted alphabetically.
         
        repeated string contained_package = 4;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the containedPackage at the given index.
      • hasRequiresReducedClasspathFallback

        boolean hasRequiresReducedClasspathFallback()
         If the Java action was started with a reduced classpath and an error
         occurred suggesting that it should be rerun with the full classpath, this
         will be true.
         
        optional bool requires_reduced_classpath_fallback = 5;
        Returns:
        Whether the requiresReducedClasspathFallback field is set.
      • getRequiresReducedClasspathFallback

        boolean getRequiresReducedClasspathFallback()
         If the Java action was started with a reduced classpath and an error
         occurred suggesting that it should be rerun with the full classpath, this
         will be true.
         
        optional bool requires_reduced_classpath_fallback = 5;
        Returns:
        The requiresReducedClasspathFallback.