Class AggregatedUninstallModulesMetadata


  • public abstract class AggregatedUninstallModulesMetadata
    extends java.lang.Object
    A class that represents the values stored in an dagger.hilt.android.internal.uninstallmodules.AggregatedUninstallModules annotation.
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      abstract javax.lang.model.element.TypeElement aggregatingElement()
      Returns the aggregating element
      static com.google.common.collect.ImmutableSet<AggregatedUninstallModulesMetadata> from​(com.google.common.collect.ImmutableSet<javax.lang.model.element.TypeElement> aggregatedElements, javax.lang.model.util.Elements elements)
      Returns metadata for each aggregated element.
      static com.google.common.collect.ImmutableSet<AggregatedUninstallModulesMetadata> from​(javax.lang.model.util.Elements elements)
      Returns metadata for all aggregated elements in the aggregating package.
      abstract javax.lang.model.element.TypeElement testElement()
      Returns the test annotated with dagger.hilt.android.testing.UninstallModules.
      static dagger.hilt.processor.internal.root.ir.AggregatedUninstallModulesIr toIr​(AggregatedUninstallModulesMetadata metadata)  
      abstract com.google.common.collect.ImmutableList<javax.lang.model.element.TypeElement> uninstallModuleElements()
      Returns the list of uninstall modules in dagger.hilt.android.testing.UninstallModules.
      • Methods inherited from class java.lang.Object

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

      • AggregatedUninstallModulesMetadata

        public AggregatedUninstallModulesMetadata()
    • Method Detail

      • aggregatingElement

        public abstract javax.lang.model.element.TypeElement aggregatingElement()
        Returns the aggregating element
      • testElement

        public abstract javax.lang.model.element.TypeElement testElement()
        Returns the test annotated with dagger.hilt.android.testing.UninstallModules.
      • uninstallModuleElements

        public abstract com.google.common.collect.ImmutableList<javax.lang.model.element.TypeElement> uninstallModuleElements()
        Returns the list of uninstall modules in dagger.hilt.android.testing.UninstallModules.
      • from

        public static com.google.common.collect.ImmutableSet<AggregatedUninstallModulesMetadata> from​(javax.lang.model.util.Elements elements)
        Returns metadata for all aggregated elements in the aggregating package.
      • from

        public static com.google.common.collect.ImmutableSet<AggregatedUninstallModulesMetadata> from​(com.google.common.collect.ImmutableSet<javax.lang.model.element.TypeElement> aggregatedElements,
                                                                                                      javax.lang.model.util.Elements elements)
        Returns metadata for each aggregated element.