com.jfinal.template.stat.CharTable Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2011-2023, James Zhan 詹波 ([email protected]).
*
* Licensed 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.jfinal.template.stat;
/**
* CharTable 空间换时间优化字符判断性能
* 负值参数强转 char 会自动变正值,无需判断负值数组下标
* isLetter(EOF) 不会下标越界
*/
public class CharTable {
private static final char NULL = 0;
private static final char EN_SIZE = 128;
private static final char CH_SIZE = 0x9FA5 + 1;
private static char size = EN_SIZE;
private static char[] letterChars = buildLetterChars();
private static char[] letterOrDigitChars = buildLetterOrDigitChars();
private static char[] exprChars = buildExprChars();
private CharTable() {}
/**
* 设置为 true 支持表达式、变量名、方法名、模板函数名使用中文
*/
public static void setChineseExpression(boolean enable) {
if (enable) {
size = CH_SIZE;
} else {
size = EN_SIZE;
}
letterChars = buildLetterChars();
letterOrDigitChars = buildLetterOrDigitChars();
exprChars = buildExprChars();
}
// 添加中文字符,Unicode 编码范围:4E00-9FA5
private static void addChineseChar(char[] ret) {
if (ret.length == CH_SIZE) {
for (char i=0x4E00; i= '0' && c <= '9';
}
public static boolean isBlank(char c) {
return c == ' ' || c == '\t' || c == '\r'; // \t\r\u000C
}
public static boolean isBlankOrLineFeed(char c) {
return c == ' ' || c == '\t' || c == '\r' || c == '\n'; // \t\r\n\u000C
}
public static boolean isHexadecimalDigit(char c) {
return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f');
}
public static boolean isOctalDigit(char c) {
return c >= '0' && c <= '7';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy