FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java/src/main/java/com/jsoniter/DecodingMode.java at master · Howeu/java · GitHub
Howeu
/
java
Public
forked from
json-iterator/java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
java
/
src
/
main
/
java
/
com
/
jsoniter
/
DecodingMode.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
20 lines (19 loc) · 479 Bytes
Breadcrumbs
java
/
src
/
main
/
java
/
com
/
jsoniter
/
DecodingMode.java
Copy path
File metadata and controls
20 lines (19 loc) · 479 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package
com
.
jsoniter
;
public
enum
DecodingMode
{
/**
* dynamically codegen, generate object decoder using hash
*/
DYNAMIC_MODE_AND_MATCH_FIELD_WITH_HASH
,
/**
* dynamically codegen, generate object decoder which compares fields strictly
*/
DYNAMIC_MODE_AND_MATCH_FIELD_STRICTLY
,
/**
* statically codegen
*/
STATIC_MODE
,
/**
* decoding only using reflection, do not need code generation
*/
REFLECTION_MODE
}
Back
|
FazBrowse Home
|
New Git URL