本文整理匯總了Java中com.badlogic.gdx.utils.Json.writeArrayEnd方法的典型用法代碼示例。如果您正苦於以下問題:Java Json.writeArrayEnd方法的具體用法?Java Json.writeArrayEnd怎麽用?Java Json.writeArrayEnd使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.badlogic.gdx.utils.Json
的用法示例。
在下文中一共展示了Json.writeArrayEnd方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getRequest
import com.badlogic.gdx.utils.Json; //導入方法依賴的package包/類
@Override
protected void getRequest(Json json) {
boolean hasStart = false;
try {
json.writeObjectStart();
} catch (IllegalStateException e) {
hasStart = true;
}
//write GC codes
json.writeObjectStart("CacheCode");
json.writeArrayStart("CacheCodes");
for (String gcCode : gcCodes) {
json.writeValue(gcCode);
}
json.writeArrayEnd();
json.writeObjectEnd();
super.getRequest(json);
if (!hasStart) json.writeObjectEnd();
}
示例2: getRequest
import com.badlogic.gdx.utils.Json; //導入方法依賴的package包/類
@Override
protected void getRequest(Json json) {
boolean hasStart = false;
try {
json.writeObjectStart();
} catch (IllegalStateException e) {
hasStart = true;
}
json.writeObjectStart("HiddenByUsers");
json.writeArrayStart("UserNames");
json.writeValue(OwnerName);
json.writeArrayEnd();
json.writeObjectEnd();
super.getRequest(json);
if (!hasStart) json.writeObjectEnd();
}
示例3: write
import com.badlogic.gdx.utils.Json; //導入方法依賴的package包/類
@Override
public void write (Json json) {
json.writeValue("name", name);
json.writeArrayStart("components");
for (int i = 0; i < components.size; i++)
if (components.get(i) instanceof Rigidbody) {
Rigidbody rigidbody = (Rigidbody)components.get(i);
components.removeIndex(i);
components.insert(1, rigidbody);
}
for (int i = 0; i < components.size; i++) {
GameComponent component = components.get(i);
json.writeObjectStart();
json.writeValue("componentType", component.getType());
component.write(json);
json.writeObjectEnd();
}
json.writeArrayEnd();
}
示例4: write
import com.badlogic.gdx.utils.Json; //導入方法依賴的package包/類
@Override
public void write(Json json) {
json.writeArrayStart("tiles");
for (T t : this) {
json.writeValue(t);
}
json.writeArrayEnd();
}
示例5: getRequest
import com.badlogic.gdx.utils.Json; //導入方法依賴的package包/類
/**
* see: https://api.groundspeak.com/LiveV6/geocaching.svc/help/operations/SearchForGeocaches
*
* @param json
*/
protected void getRequest(Json json) {
json.writeValue("AccessToken", this.gcApiKey);
json.writeValue("MaxPerPage", this.number);
json.writeValue("StartIndex", 0);
json.writeValue("IsLite", this.isLite);
json.writeValue("TrackableLogCount", trackableLogCount);
json.writeValue("GeocacheLogCount", geocacheLogCount);
if (this.available) {
json.writeObjectStart("GeocacheExclusions");
json.writeValue("Archived", false);
json.writeValue("Available", true);
json.writeObjectEnd();
}
if (this.excludeHides) {
json.writeObjectStart("NotHiddenByUsers");
json.writeArrayStart("UserNames");
json.writeValue(Config.GcLogin.getValue());
json.writeArrayEnd();
json.writeObjectEnd();
}
if (this.excludeFounds) {
json.writeObjectStart("NotFoundByUsers");
json.writeArrayStart("UserNames");
json.writeValue(Config.GcLogin.getValue());
json.writeArrayEnd();
json.writeObjectEnd();
}
}
示例6: write
import com.badlogic.gdx.utils.Json; //導入方法依賴的package包/類
@Override
public void write (Json json) {
json.writeArrayStart("sortingLayers");
for (int i = 0; i < sortingLayers.size; i++)
json.writeValue(sortingLayers.get(i));
json.writeArrayEnd();
JsonUtil.writeColorToJson(json, backgroundColor, "backgroundColor");
JsonUtil.writeColorToJson(json, ambientLightColor, "ambientLightColor");
}
示例7: write
import com.badlogic.gdx.utils.Json; //導入方法依賴的package包/類
@Override
public void write(Json json, InputFile model, Class knownType) {
String path = PathUtils.relativize(model.getFileHandle().path(), root.getPath());
json.writeObjectStart();
json.writeValue("path", path);
json.writeValue("type", model.getType().name());
switch (model.getType()) {
case Input:
if (model.isDirectory()) {
//### Input directory properties
json.writeValue("dirFilePrefix", model.getDirFilePrefix());
json.writeValue("recursive", model.isRecursive());
json.writeValue("flattenPaths", model.isFlattenPaths());
} else {
//### Input file properties
json.writeValue("regionName", model.getRegionName());
// Ninepatch
if (model.isProgrammaticNinePatch()) {
InputFile.NinePatchProps npp = model.getNinePatchProps();
json.writeObjectStart("ninepatch");
json.writeArrayStart("splits");
json.writeValue(npp.left);
json.writeValue(npp.right);
json.writeValue(npp.top);
json.writeValue(npp.bottom);
json.writeArrayEnd();
json.writeArrayStart("pads");
json.writeValue(npp.padLeft);
json.writeValue(npp.padRight);
json.writeValue(npp.padTop);
json.writeValue(npp.padBottom);
json.writeArrayEnd();
json.writeObjectEnd();
}
}
break;
case Ignore:
//### Ignore file properties
break;
}
json.writeObjectEnd();
}