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

com.ideaaedi.commonds.constants.SymbolConstant Maven / Gradle / Ivy

The newest version!
package com.ideaaedi.commonds.constants;

/**
 * 符号
 *
 * @author JustryDeng 
 * @since 1.0.0
 */
public interface SymbolConstant {
    
    /** 斜杠 */
    String SLASH = "/";
    
    /** 反斜杠 */
    String BACKSLASH = "\\";
    
    /** 冒号 */
    String COLON = ":";
    
    /** 逗号 */
    String COMMA = ",";
    
    /** 前进符号 */
    String FORWARD = "=>";
    
    /** 箭头 */
    String ARROW = "->";
    
    /** 点 */
    String POINT = ".";
    
    /** 感叹号 */
    String EXCLAMATION_MARK = "!";
    
    /** 连字号 */
    String HYPHEN = "-";
    
    /** 管道符 */
    String PIPE = "|";
    
    /** 系统换行符 */
    String SYSTEM_LINE_SEPARATOR = System.lineSeparator();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy