How to set an object null if all of its fields are null?
How to set an object null if all of its fields are null?
De-serializing
Gson gson = new Gson();
DetailUser detailUser = gson.fromJson(json, DetailUser.class);
DetailUser where disconnect should be null if all of its fields are null
public class DetailUser {
String email;
Integer age;
Disconnect disconnect;
}
Disconnect
public class Disconnect {
String text;
String beginning;
String end;
}
JSON by which disconnect
should be null
{
"email":"test@test.test",
"age":33,
"disconnect":{}
}
JSON by which disconnect
should not be null
{
"email":"test@test.test",
"age":33,
"disconnect":{
"text":"test",
"beginning":"test",
"end":"test"
}
}
I expect detailUser.getDisconnect()==null
to be true
but get false
when Disconnect
fields (text, beginning, end) are all null
.
json gson deserialization json-deserialization
add a comment |
How to set an object null if all of its fields are null?
De-serializing
Gson gson = new Gson();
DetailUser detailUser = gson.fromJson(json, DetailUser.class);
DetailUser where disconnect should be null if all of its fields are null
public class DetailUser {
String email;
Integer age;
Disconnect disconnect;
}
Disconnect
public class Disconnect {
String text;
String beginning;
String end;
}
JSON by which disconnect
should be null
{
"email":"test@test.test",
"age":33,
"disconnect":{}
}
JSON by which disconnect
should not be null
{
"email":"test@test.test",
"age":33,
"disconnect":{
"text":"test",
"beginning":"test",
"end":"test"
}
}
I expect detailUser.getDisconnect()==null
to be true
but get false
when Disconnect
fields (text, beginning, end) are all null
.
json gson deserialization json-deserialization
add a comment |
How to set an object null if all of its fields are null?
De-serializing
Gson gson = new Gson();
DetailUser detailUser = gson.fromJson(json, DetailUser.class);
DetailUser where disconnect should be null if all of its fields are null
public class DetailUser {
String email;
Integer age;
Disconnect disconnect;
}
Disconnect
public class Disconnect {
String text;
String beginning;
String end;
}
JSON by which disconnect
should be null
{
"email":"test@test.test",
"age":33,
"disconnect":{}
}
JSON by which disconnect
should not be null
{
"email":"test@test.test",
"age":33,
"disconnect":{
"text":"test",
"beginning":"test",
"end":"test"
}
}
I expect detailUser.getDisconnect()==null
to be true
but get false
when Disconnect
fields (text, beginning, end) are all null
.
json gson deserialization json-deserialization
How to set an object null if all of its fields are null?
De-serializing
Gson gson = new Gson();
DetailUser detailUser = gson.fromJson(json, DetailUser.class);
DetailUser where disconnect should be null if all of its fields are null
public class DetailUser {
String email;
Integer age;
Disconnect disconnect;
}
Disconnect
public class Disconnect {
String text;
String beginning;
String end;
}
JSON by which disconnect
should be null
{
"email":"test@test.test",
"age":33,
"disconnect":{}
}
JSON by which disconnect
should not be null
{
"email":"test@test.test",
"age":33,
"disconnect":{
"text":"test",
"beginning":"test",
"end":"test"
}
}
I expect detailUser.getDisconnect()==null
to be true
but get false
when Disconnect
fields (text, beginning, end) are all null
.
json gson deserialization json-deserialization
json gson deserialization json-deserialization
edited Dec 27 at 16:08
pirho
3,716101830
3,716101830
asked Dec 27 at 14:08
mario
256
256
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Your problem is that there is a Disconnect
object in your json that has all its fields null
. Gson is working as it should but if you want to have Disconnect
to be null
whenever its all fields are null
you have some options.
One option is to create custom JsonDeserializer
, like:
public class NullAdapter implements JsonDeserializer<Disconnect> {
@Override
public Disconnect deserialize(JsonElement json, Type typeOfT,
JsonDeserializationContext context)
throws JsonParseException {
Disconnect dc = new Gson().fromJson(json, typeOfT);
// Here you decide the criteria in which case to return the Disconnect or null
// I decided that if any of its fields is not null it is neither null
if (dc.beginning != null || dc.text != null || dc.end != null) {
return dc;
}
return null;
}
}
Test it by registering with GsonBuilder()
:
@Test
public void test() {
DetailUser du = new GsonBuilder()
.registerTypeAdapter(Disconnect.class, new NullAdapter())
.create()
.fromJson(**YOUR_NULL_JSON**, DetailUser.class);
assertNull(du.disconnect);
}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53946398%2fhow-to-set-an-object-null-if-all-of-its-fields-are-null%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your problem is that there is a Disconnect
object in your json that has all its fields null
. Gson is working as it should but if you want to have Disconnect
to be null
whenever its all fields are null
you have some options.
One option is to create custom JsonDeserializer
, like:
public class NullAdapter implements JsonDeserializer<Disconnect> {
@Override
public Disconnect deserialize(JsonElement json, Type typeOfT,
JsonDeserializationContext context)
throws JsonParseException {
Disconnect dc = new Gson().fromJson(json, typeOfT);
// Here you decide the criteria in which case to return the Disconnect or null
// I decided that if any of its fields is not null it is neither null
if (dc.beginning != null || dc.text != null || dc.end != null) {
return dc;
}
return null;
}
}
Test it by registering with GsonBuilder()
:
@Test
public void test() {
DetailUser du = new GsonBuilder()
.registerTypeAdapter(Disconnect.class, new NullAdapter())
.create()
.fromJson(**YOUR_NULL_JSON**, DetailUser.class);
assertNull(du.disconnect);
}
add a comment |
Your problem is that there is a Disconnect
object in your json that has all its fields null
. Gson is working as it should but if you want to have Disconnect
to be null
whenever its all fields are null
you have some options.
One option is to create custom JsonDeserializer
, like:
public class NullAdapter implements JsonDeserializer<Disconnect> {
@Override
public Disconnect deserialize(JsonElement json, Type typeOfT,
JsonDeserializationContext context)
throws JsonParseException {
Disconnect dc = new Gson().fromJson(json, typeOfT);
// Here you decide the criteria in which case to return the Disconnect or null
// I decided that if any of its fields is not null it is neither null
if (dc.beginning != null || dc.text != null || dc.end != null) {
return dc;
}
return null;
}
}
Test it by registering with GsonBuilder()
:
@Test
public void test() {
DetailUser du = new GsonBuilder()
.registerTypeAdapter(Disconnect.class, new NullAdapter())
.create()
.fromJson(**YOUR_NULL_JSON**, DetailUser.class);
assertNull(du.disconnect);
}
add a comment |
Your problem is that there is a Disconnect
object in your json that has all its fields null
. Gson is working as it should but if you want to have Disconnect
to be null
whenever its all fields are null
you have some options.
One option is to create custom JsonDeserializer
, like:
public class NullAdapter implements JsonDeserializer<Disconnect> {
@Override
public Disconnect deserialize(JsonElement json, Type typeOfT,
JsonDeserializationContext context)
throws JsonParseException {
Disconnect dc = new Gson().fromJson(json, typeOfT);
// Here you decide the criteria in which case to return the Disconnect or null
// I decided that if any of its fields is not null it is neither null
if (dc.beginning != null || dc.text != null || dc.end != null) {
return dc;
}
return null;
}
}
Test it by registering with GsonBuilder()
:
@Test
public void test() {
DetailUser du = new GsonBuilder()
.registerTypeAdapter(Disconnect.class, new NullAdapter())
.create()
.fromJson(**YOUR_NULL_JSON**, DetailUser.class);
assertNull(du.disconnect);
}
Your problem is that there is a Disconnect
object in your json that has all its fields null
. Gson is working as it should but if you want to have Disconnect
to be null
whenever its all fields are null
you have some options.
One option is to create custom JsonDeserializer
, like:
public class NullAdapter implements JsonDeserializer<Disconnect> {
@Override
public Disconnect deserialize(JsonElement json, Type typeOfT,
JsonDeserializationContext context)
throws JsonParseException {
Disconnect dc = new Gson().fromJson(json, typeOfT);
// Here you decide the criteria in which case to return the Disconnect or null
// I decided that if any of its fields is not null it is neither null
if (dc.beginning != null || dc.text != null || dc.end != null) {
return dc;
}
return null;
}
}
Test it by registering with GsonBuilder()
:
@Test
public void test() {
DetailUser du = new GsonBuilder()
.registerTypeAdapter(Disconnect.class, new NullAdapter())
.create()
.fromJson(**YOUR_NULL_JSON**, DetailUser.class);
assertNull(du.disconnect);
}
answered Dec 27 at 16:01
pirho
3,716101830
3,716101830
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53946398%2fhow-to-set-an-object-null-if-all-of-its-fields-are-null%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown