2015-07-30 19:24:01 +02:00
|
|
|
package com.plotsquared.bukkit.chat;
|
2015-06-23 23:44:44 +02:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
|
2015-07-30 16:25:16 +02:00
|
|
|
import com.google.gson.stream.JsonWriter;
|
|
|
|
import com.intellectualcrafters.configuration.serialization.ConfigurationSerializable;
|
|
|
|
|
2015-06-23 23:44:44 +02:00
|
|
|
/**
|
|
|
|
* Represents a JSON string value.
|
|
|
|
* Writes by this object will not write name values nor begin/end objects in the JSON stream.
|
|
|
|
* All writes merely write the represented string value.
|
|
|
|
*/
|
|
|
|
final class JsonString implements JsonRepresentedObject, ConfigurationSerializable {
|
|
|
|
|
|
|
|
private String _value;
|
|
|
|
|
|
|
|
public JsonString(CharSequence value){
|
|
|
|
_value = value == null ? null : value.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeJson(JsonWriter writer) throws IOException {
|
|
|
|
writer.value(getValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getValue(){
|
|
|
|
return _value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Map<String, Object> serialize() {
|
|
|
|
HashMap<String, Object> theSingleValue = new HashMap<String, Object>();
|
|
|
|
theSingleValue.put("stringValue", _value);
|
|
|
|
return theSingleValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static JsonString deserialize(Map<String, Object> map){
|
|
|
|
return new JsonString(map.get("stringValue").toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString(){
|
|
|
|
return _value;
|
|
|
|
}
|
|
|
|
}
|