Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
e9182f52
提交
e9182f52
authored
12月 18, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
javadocs
上级
6a29a44c
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
10 行增加
和
8 行删除
+10
-8
FileUtils.java
h2/src/main/org/h2/util/FileUtils.java
+1
-1
MathUtils.java
h2/src/main/org/h2/util/MathUtils.java
+2
-2
ObjectArray.java
h2/src/main/org/h2/util/ObjectArray.java
+1
-0
StringUtils.java
h2/src/main/org/h2/util/StringUtils.java
+6
-5
没有找到文件。
h2/src/main/org/h2/util/FileUtils.java
浏览文件 @
e9182f52
...
@@ -58,7 +58,7 @@ public class FileUtils {
...
@@ -58,7 +58,7 @@ public class FileUtils {
/**
/**
* Get the absolute file path of a file in the user home directory.
* Get the absolute file path of a file in the user home directory.
*
*
* @param fileName
* @param fileName
the file name
* @return the absolute path
* @return the absolute path
*/
*/
public
static
String
getFileInUserHome
(
String
fileName
)
{
public
static
String
getFileInUserHome
(
String
fileName
)
{
...
...
h2/src/main/org/h2/util/MathUtils.java
浏览文件 @
e9182f52
...
@@ -29,7 +29,7 @@ public class MathUtils {
...
@@ -29,7 +29,7 @@ public class MathUtils {
* in 16, and so on.
* in 16, and so on.
*
*
* @param x the value to be rounded
* @param x the value to be rounded
* @param blockSizePowerOf2
* @param blockSizePowerOf2
the block size
* @return the rounded value
* @return the rounded value
*/
*/
public
static
int
roundUp
(
int
x
,
int
blockSizePowerOf2
)
{
public
static
int
roundUp
(
int
x
,
int
blockSizePowerOf2
)
{
...
@@ -43,7 +43,7 @@ public class MathUtils {
...
@@ -43,7 +43,7 @@ public class MathUtils {
* in 16, and so on.
* in 16, and so on.
*
*
* @param x the value to be rounded
* @param x the value to be rounded
* @param blockSizePowerOf2
* @param blockSizePowerOf2
the block size
* @return the rounded value
* @return the rounded value
*/
*/
public
static
long
roundUpLong
(
long
x
,
long
blockSizePowerOf2
)
{
public
static
long
roundUpLong
(
long
x
,
long
blockSizePowerOf2
)
{
...
...
h2/src/main/org/h2/util/ObjectArray.java
浏览文件 @
e9182f52
...
@@ -85,6 +85,7 @@ public class ObjectArray {
...
@@ -85,6 +85,7 @@ public class ObjectArray {
* Remove the object at the given index.
* Remove the object at the given index.
*
*
* @param index the index
* @param index the index
* @return the removed object
*/
*/
public
Object
remove
(
int
index
)
{
public
Object
remove
(
int
index
)
{
// TODO performance: the app should (where possible)
// TODO performance: the app should (where possible)
...
...
h2/src/main/org/h2/util/StringUtils.java
浏览文件 @
e9182f52
...
@@ -575,8 +575,8 @@ public class StringUtils {
...
@@ -575,8 +575,8 @@ public class StringUtils {
* Creates an XML attribute of the form name="value".
* Creates an XML attribute of the form name="value".
* A single space is prepended to the name,
* A single space is prepended to the name,
* so that multiple attributes can be concatenated.
* so that multiple attributes can be concatenated.
* @param name
* @param name
the attribute name
* @param value
* @param value
the attribute value
* @return the attribute
* @return the attribute
*/
*/
public
static
String
xmlAttr
(
String
name
,
String
value
)
{
public
static
String
xmlAttr
(
String
name
,
String
value
)
{
...
@@ -640,7 +640,7 @@ public class StringUtils {
...
@@ -640,7 +640,7 @@ public class StringUtils {
* If the data contains '--', it is converted to '- -'.
* If the data contains '--', it is converted to '- -'.
* The data is indented with 4 spaces if it contains a newline character.
* The data is indented with 4 spaces if it contains a newline character.
*
*
* @param data
* @param data
the comment text
* @return <!-- data -->
* @return <!-- data -->
*/
*/
public
static
String
xmlComment
(
String
data
)
{
public
static
String
xmlComment
(
String
data
)
{
...
@@ -663,7 +663,8 @@ public class StringUtils {
...
@@ -663,7 +663,8 @@ public class StringUtils {
/**
/**
* Converts the data to a CDATA element.
* Converts the data to a CDATA element.
* If the data contains ']]>', it is escaped as a text element.
* If the data contains ']]>', it is escaped as a text element.
* @param data
*
* @param data the text data
* @return <![CDATA[data]]>
* @return <![CDATA[data]]>
*/
*/
public
static
String
xmlCData
(
String
data
)
{
public
static
String
xmlCData
(
String
data
)
{
...
@@ -686,7 +687,7 @@ public class StringUtils {
...
@@ -686,7 +687,7 @@ public class StringUtils {
/**
/**
* Escapes an XML text element.
* Escapes an XML text element.
*
*
* @param text
* @param text
the text data
* @return the escaped text
* @return the escaped text
*/
*/
public
static
String
xmlText
(
String
text
)
{
public
static
String
xmlText
(
String
text
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论