Package org.revapi
Class Revapi.Builder
- java.lang.Object
-
- org.revapi.Revapi.Builder
-
- Enclosing class:
- Revapi
@Deprecated public static final class Revapi.Builder extends Object
Deprecated.favor thePipelineConfiguration.Builder
This builder is merely a proxy to thePipelineConfiguration
and its builder. It is provided just for convenience (and also to keep backwards compatibility ;) ).
-
-
Constructor Summary
Constructors Constructor Description Builder()
Deprecated.
-
Method Summary
-
-
-
Method Detail
-
withAnalyzersFromThreadContextClassLoader
@Nonnull public Revapi.Builder withAnalyzersFromThreadContextClassLoader()
Deprecated.
-
withAnalyzersFrom
@Nonnull public Revapi.Builder withAnalyzersFrom(@Nonnull ClassLoader cl)
Deprecated.
-
withAnalyzers
@SafeVarargs @Nonnull public final Revapi.Builder withAnalyzers(Class<? extends ApiAnalyzer>... analyzers)
Deprecated.
-
withAnalyzers
@Nonnull public Revapi.Builder withAnalyzers(@Nonnull Iterable<Class<? extends ApiAnalyzer>> analyzers)
Deprecated.
-
withReportersFromThreadContextClassLoader
@Nonnull public Revapi.Builder withReportersFromThreadContextClassLoader()
Deprecated.
-
withReportersFrom
@Nonnull public Revapi.Builder withReportersFrom(@Nonnull ClassLoader cl)
Deprecated.
-
withReporters
@SafeVarargs @Nonnull public final Revapi.Builder withReporters(Class<? extends Reporter>... reporters)
Deprecated.
-
withReporters
@Nonnull public Revapi.Builder withReporters(@Nonnull Iterable<Class<? extends Reporter>> reporters)
Deprecated.
-
withTransformsFromThreadContextClassLoader
@Nonnull public Revapi.Builder withTransformsFromThreadContextClassLoader()
Deprecated.
-
withTransformsFrom
@Nonnull public Revapi.Builder withTransformsFrom(@Nonnull ClassLoader cl)
Deprecated.
-
withTransforms
@SafeVarargs @Nonnull public final Revapi.Builder withTransforms(Class<? extends DifferenceTransform>... transforms)
Deprecated.
-
withTransforms
@Nonnull public Revapi.Builder withTransforms(@Nonnull Iterable<Class<? extends DifferenceTransform>> transforms)
Deprecated.
-
withFiltersFromThreadContextClassLoader
@Nonnull public Revapi.Builder withFiltersFromThreadContextClassLoader()
Deprecated.
-
withFiltersFrom
@Nonnull public Revapi.Builder withFiltersFrom(@Nonnull ClassLoader cl)
Deprecated.
-
withFilters
@SafeVarargs @Nonnull public final Revapi.Builder withFilters(Class<? extends TreeFilterProvider>... filters)
Deprecated.
-
withFilters
@Nonnull public Revapi.Builder withFilters(@Nonnull Iterable<Class<? extends TreeFilterProvider>> filters)
Deprecated.
-
withMatchersFromThreadContextClassLoader
@Nonnull public Revapi.Builder withMatchersFromThreadContextClassLoader()
Deprecated.
-
withMatchersFrom
@Nonnull public Revapi.Builder withMatchersFrom(@Nonnull ClassLoader cl)
Deprecated.
-
withMatchers
@SafeVarargs @Nonnull public final Revapi.Builder withMatchers(Class<? extends ElementMatcher>... matchers)
Deprecated.
-
withMatchers
@Nonnull public Revapi.Builder withMatchers(@Nonnull Iterable<Class<? extends ElementMatcher>> matchers)
Deprecated.
-
withAllExtensionsFromThreadContextClassLoader
@Nonnull public Revapi.Builder withAllExtensionsFromThreadContextClassLoader()
Deprecated.
-
withAllExtensionsFrom
@Nonnull public Revapi.Builder withAllExtensionsFrom(@Nonnull ClassLoader cl)
Deprecated.
-
withTransformationBlocks
public Revapi.Builder withTransformationBlocks(Set<List<String>> blocks)
Deprecated.
-
addTransformationBlock
public Revapi.Builder addTransformationBlock(List<String> block)
Deprecated.
-
build
@Nonnull public Revapi build() throws IllegalStateException
Deprecated.- Returns:
- a new Revapi instance
- Throws:
IllegalStateException
- if there are no api analyzers or no reporters added.
-
-