private Configuration()

in android/src/main/java/com/facebook/spectrum/Configuration.java [92:121]


  private Configuration(
      @Nullable ImageColor defaultBackgroundColor,
      @Nullable Boolean interpretMetadata,
      @Nullable SamplingMethod samplingMethod,
      @Nullable Boolean propagateChromaSamplingModeFromSource,
      @Nullable ImageChromaSamplingMode chromaSamplingModeOverride,
      @Nullable Boolean useTrellis,
      @Nullable Boolean useProgressive,
      @Nullable Boolean useOptimizeScan,
      @Nullable Boolean useCompatibleDcScanOpt,
      @Nullable Boolean usePsnrQuantTable,
      @Nullable Boolean useInterlacing,
      @Nullable Integer compressionLevel,
      @Nullable Integer webpMethod,
      @Nullable ImageHint webpImageHint) {
    this.defaultBackgroundColor = defaultBackgroundColor;
    this.interpretMetadata = interpretMetadata;
    this.propagateChromaSamplingModeFromSource = propagateChromaSamplingModeFromSource;
    this.samplingMethod = samplingMethod;
    this.useTrellis = useTrellis;
    this.useProgressive = useProgressive;
    this.useOptimizeScan = useOptimizeScan;
    this.useCompatibleDcScanOpt = useCompatibleDcScanOpt;
    this.chromaSamplingModeOverride = chromaSamplingModeOverride;
    this.usePsnrQuantTable = usePsnrQuantTable;
    this.useInterlacing = useInterlacing;
    this.compressionLevel = compressionLevel;
    this.webpMethod = webpMethod;
    this.webpImageHint = webpImageHint;
  }