You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
567 B
30 lines
567 B
7 years ago
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
|
||
|
package libraries.marauder.analytics.utils.json;
|
||
|
|
||
|
public class JsonString implements JsonType {
|
||
|
|
||
|
public String array;
|
||
|
|
||
|
public JsonString(String input) {
|
||
|
array = JsonUtils.serialize(input).toString();
|
||
|
}
|
||
|
|
||
|
public JsonString(long input) {
|
||
|
array = JsonUtils.serialize(input);
|
||
|
}
|
||
|
|
||
|
public JsonString(double input) {
|
||
|
array = JsonUtils.serialize(input);
|
||
|
}
|
||
|
|
||
|
public JsonString(boolean input) {
|
||
|
array = JsonUtils.serialize(input);
|
||
|
}
|
||
|
|
||
|
public String toString() {
|
||
|
return array;
|
||
|
}
|
||
|
|
||
|
}
|