Home > Contents > Index >
StringRowsType
An array of rows, of type string, that is input to an
IList
object.Associated methods construct a single component-row array as an object of type
StringRowsType
. The populatedIList
object is, in turn, an input to the AssetSet Operations.Methods
new
StringRowsType
( )- Constructor method that instantiates the
StringRowsType
object. Creates an emptyStringRowsType
object, and provides methods for creating arrays of rows. Once theStringRowsType
object is instantiated, you can call the associatedsetItem
method on it.
setItem(java.lang.String[] item)
- Sets arrays of strings in the
StringRowsType
object. This method has a correspondingget
method.
Example
The following code creates an IList using a
StringRowsType
object.IList inList = new IList(); String colName[] = {"attributename", "attributetypename", "direction" }; inList.setColName(colName); String item1[] = {"Name", "PAttributes", "ascending"}; String item2[] = {"FundType", "PAttributes", "ascending"}; StringRowsType items[] = new StringRowsType[2]; items[0] = new StringRowsType(); items[1] = new StringRowsType(); items[0].setItem(item1); items[1].setItem(item2); inList.setStringRow(items);See Also
Home > Contents > Index > ![]()
Oracle Web Services Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.