Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
guns-vip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenjunxiong
guns-vip
Commits
dfa94518
Commit
dfa94518
authored
Feb 28, 2018
by
stylefeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
格式规范化
parent
74f73802
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
guns-core/src/main/java/com/stylefeng/guns/core/page/PageBT.java
+0
-0
guns-core/src/main/java/com/stylefeng/guns/core/qr/ImgQrTool.java
+0
-1
guns-core/src/main/java/com/stylefeng/guns/core/support/BasicType.java
+8
-2
No files found.
guns-core/src/main/java/com/stylefeng/guns/core/page/PageBT.java
View file @
dfa94518
guns-core/src/main/java/com/stylefeng/guns/core/qr/ImgQrTool.java
View file @
dfa94518
...
@@ -67,7 +67,6 @@ public class ImgQrTool {
...
@@ -67,7 +67,6 @@ public class ImgQrTool {
* @param width 宽度
* @param width 宽度
* @param height 高度
* @param height 高度
* @param srcImagePath 被镶嵌的图片的地址
* @param srcImagePath 被镶嵌的图片的地址
* @param destImagePath 生成二维码图片的地址
* @author fengshuonan
* @author fengshuonan
* @since 2.3.0
* @since 2.3.0
*/
*/
...
...
guns-core/src/main/java/com/stylefeng/guns/core/support/BasicType.java
View file @
dfa94518
...
@@ -5,14 +5,20 @@ import java.util.Map;
...
@@ -5,14 +5,20 @@ import java.util.Map;
/**
/**
* 基本变量类型的枚举
* 基本变量类型的枚举
*
* @author xiaoleilu
* @author xiaoleilu
*/
*/
public
enum
BasicType
{
public
enum
BasicType
{
BYTE
,
SHORT
,
INT
,
INTEGER
,
LONG
,
DOUBLE
,
FLOAT
,
BOOLEAN
,
CHAR
,
CHARACTER
,
STRING
;
BYTE
,
SHORT
,
INT
,
INTEGER
,
LONG
,
DOUBLE
,
FLOAT
,
BOOLEAN
,
CHAR
,
CHARACTER
,
STRING
;
/** 原始类型为Key,包装类型为Value,例如: int.class -> Integer.class. */
/**
* 原始类型为Key,包装类型为Value,例如: int.class -> Integer.class.
*/
public
static
final
Map
<
Class
<?>,
Class
<?>>
wrapperPrimitiveMap
=
new
HashMap
<
Class
<?>,
Class
<?>>(
8
);
public
static
final
Map
<
Class
<?>,
Class
<?>>
wrapperPrimitiveMap
=
new
HashMap
<
Class
<?>,
Class
<?>>(
8
);
/** 包装类型为Key,原始类型为Value,例如: Integer.class -> int.class. */
/**
* 包装类型为Key,原始类型为Value,例如: Integer.class -> int.class.
*/
public
static
final
Map
<
Class
<?>,
Class
<?>>
primitiveWrapperMap
=
new
HashMap
<
Class
<?>,
Class
<?>>(
8
);
public
static
final
Map
<
Class
<?>,
Class
<?>>
primitiveWrapperMap
=
new
HashMap
<
Class
<?>,
Class
<?>>(
8
);
static
{
static
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment