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

com.verifalia.api.emailvalidations.models.LineEndingMode Maven / Gradle / Ivy

Go to download

Verifalia provides a simple HTTPS-based API for validating email addresses and checking whether they are deliverable or not. This library allows to easily integrate with Verifalia and verify email addresses in real-time.

The newest version!
package com.verifalia.api.emailvalidations.models;

/**
 * The line-ending mode for an input text file provided to the Verifalia API for verification.
 */
public enum LineEndingMode {
    /**
     * Automatic line-ending detection, attempts to guess the correct line ending from the first chunk of data.
     */
    Auto,

    /**
     * CR + LF sequence (\r\n), commonly used in files generated on Windows.
     */
    CrLf,

    /**
     * CR sequence (\r), commonly used in files generated on classic MacOS.
     */
    Cr,

    /**
     * LF (\n), commonly used in files generated on Unix and Unix-like systems (including Linux and MacOS).
     */
    Lf
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy