-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "unique" and "default" fields in the format
"Unique" flags the column as unique (not possible to have duplicate data in this column) "Default" allows the developer to set a default value for this column It must be the same type as the type of the column.
- Loading branch information
Showing
6 changed files
with
101 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
generator/src/com/foxykeep/cpcodegenerator/util/JsonUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.foxykeep.cpcodegenerator.util; | ||
|
||
import org.json.JSONObject; | ||
|
||
public class JsonUtils { | ||
|
||
private static final String JSON_NULL = "null"; | ||
|
||
private JsonUtils() {} | ||
|
||
public static String getStringFixFalseNull(final JSONObject jsonObject, final String key) { | ||
if (jsonObject.has(key)) { | ||
final String value = jsonObject.optString(key); | ||
return JSON_NULL.equals(value) ? null : value; | ||
} else { | ||
return null; | ||
} | ||
} | ||
} |