All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codemodder.EncodingDetector Maven / Gradle / Ivy

There is a newer version: 0.98.6
Show newest version
package io.codemodder;

import java.io.IOException;
import java.nio.file.Path;
import java.util.Optional;

/** Detects the encoding of a file. */
public interface EncodingDetector {
  /** Try to detect the encoding of a file. */
  Optional detect(Path file) throws IOException;

  static EncodingDetector create() {
    return new DefaultEncodingDetector();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy