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

io.microsphere.constants.PathConstants Maven / Gradle / Ivy

The newest version!
/**
 *
 */
package io.microsphere.constants;

/**
 * Path Constants Definition
 *
 * @author Mercy
 * @version 1.0.0
 * @see PathConstants
 * @since 1.0.0
 */
public interface PathConstants {

    /**
     * Slash char
     */
    char SLASH_CHAR = '/';

    /**
     * Back Slash char
     */
    char BACK_SLASH_CHAR = '\\';

    /**
     * Slash : "/"
     */
    String SLASH = "/";

    /**
     * Double Slash : "//"
     */
    String DOUBLE_SLASH = SLASH + SLASH;

    /**
     * Back Slash : "\"
     */
    String BACK_SLASH = "\\";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy