Package | Description |
---|---|
com.google.gwt.lang |
Modifier and Type | Method and Description |
---|---|
static Array |
Array.initDim(Class<?> arrayClass,
JavaScriptObject castableTypeMap,
int queryId,
int length,
int seedType)
Creates an array like "new T[a][b][c][][]" by passing in a native JSON
array, [a, b, c].
|
static Array |
Array.initDims(Class<?>[] arrayClasses,
JavaScriptObject[] castableTypeMapExprs,
int[] queryIdExprs,
int[] dimExprs,
int count,
int seedType)
Creates an array like "new T[a][b][c][][]" by passing in a native JSON
array, [a, b, c].
|
static Array |
Array.initValues(Class<?> arrayClass,
JavaScriptObject castableTypeMap,
int queryId,
Array array)
Creates an array like "new T[][]{a,b,c,d}" by passing in a native JSON
array, [a, b, c, d].
|
Modifier and Type | Method and Description |
---|---|
static Array |
Array.initValues(Class<?> arrayClass,
JavaScriptObject castableTypeMap,
int queryId,
Array array)
Creates an array like "new T[][]{a,b,c,d}" by passing in a native JSON
array, [a, b, c, d].
|
static Object |
Array.setCheck(Array array,
int index,
Object value)
Performs an array assignment, after validating the type of the value being
stored.
|
Copyright © 2018. All rights reserved.