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 = "\\";
}