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

com.github.joekerouac.common.tools.constant.StringConst Maven / Gradle / Ivy

The newest version!
// Generated by delombok at Fri Mar 14 11:41:38 CST 2025
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE
 * file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file
 * to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the
 * License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 */
package com.github.joekerouac.common.tools.constant;

/**
 * @since 1.0.0
 * @author JoeKerouac
 * @date 2022-10-14 14:37:00
 */
public class StringConst {
    /**
     * 一个空格
     */
    public static final String BLANK_SPACE = " ";
    /**
     * 双引号
     */
    public static final char DOUBLE_QUOTATION_MARKS = '\"';
    /**
     * 单引号
     */
    public static final char QUOTATION_MARKS = '\'';
    /**
     * 四个空格
     */
    public static final String TAB = "    ";
    /**
     * 英文点
     */
    public static final char DOT = '.';
    /**
     * 逗号
     */
    public static final char COMMA = ',';
    /**
     * 左大括号
     */
    public static final char LEFT_BRACES = '{';
    /**
     * 右大括号
     */
    public static final char RIGHT_BRACES = '}';
    /**
     * 左中括号
     */
    public static final char LEFT_BRACKET = '[';
    /**
     * 右中括号
     */
    public static final char RIGHT_BRACKET = ']';
    /**
     * 斜杠
     */
    public static final char SLASH = '/';
    /**
     * 反斜杠
     */
    public static final char BACKSLASH = '\\';
    /**
     * null
     */
    public static final String NULL = "null";
    /**
     * 空字符串
     */
    public static final String EMPTY = "";
    /**
     * 连接符
     */
    public static final char HYPHEN = '-';
    /**
     * 下划线
     */
    public static final char UNDERLINE = '_';
    /**
     * 反引号
     */
    public static final char BACKTICK = '`';

    @java.lang.SuppressWarnings("all")
    @lombok.Generated
    private StringConst() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy