playn.flash.json
Interface JsonArray

All Superinterfaces:
JsonValue
All Known Implementing Classes:
JreJsonArray

public interface JsonArray
extends JsonValue

Represents a Json array.


Method Summary
<T extends JsonValue>
T
get(int index)
           
 int length()
           
 void remove(int index)
           
 void set(int index, boolean bool)
           
 void set(int index, double number)
           
 void set(int index, JsonValue value)
           
 void set(int index, String string)
           
 
Methods inherited from interface playn.flash.json.JsonValue
getType, jsEquals, toJson
 

Method Detail

get

<T extends JsonValue> T get(int index)

length

int length()

remove

void remove(int index)

set

void set(int index,
         JsonValue value)

set

void set(int index,
         String string)

set

void set(int index,
         double number)

set

void set(int index,
         boolean bool)


Copyright © 2011. All Rights Reserved.