Package org.drip.service.representation
Class ItemList
java.lang.Object
org.drip.service.representation.ItemList
public class ItemList
extends java.lang.Object
ItemList is an Adaptation of the ItemList Interface from the RFC4627 compliant JSON Simple
(https://code.google.com/p/json-simple/).
|a:b:c| = |a|,|b|,|c|
|:| = ||,||
|a:| = |a|,||
It provides the following Functionality:
- Split the String using the Separator
- ItemList Constructor #1
- ItemList Constructor #2
- Split the String using the Separator
- ItemList Constructor #3
- Retrieve the List of Items
- Retrieve the Array of Items
- Set the Separator
- Add the Specified Item at the Location
- Add the Specified Item
- Add all the Items in the List
- Add all the Items in the Input String #1
- Add all the Items in the Input String #2
- Add all the Items in the Input String #3
- Retrieve the Indexed Item
- Retrieve the Number of Items
- Convert the Item List to String
- Generate the Item-separated String
- Clear the List
- Reset the List
Module | Computational Core Module |
Library | Computation Support |
Project | Environment, Product/Definition Containers, and Scenario/State Manipulation APIs |
Package | RFC4627 Compliant JSON Message Object |
- Author:
- Fang Yidong, Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description ItemList()
Empty ItemList ConstructorItemList(java.lang.String s)
ItemList Constructor #1ItemList(java.lang.String s, java.lang.String separator)
ItemList Constructor #2ItemList(java.lang.String s, java.lang.String separator, boolean isMultiToken)
ItemList Constructor #3 -
Method Summary
Modifier and Type Method Description void
add(int i, java.lang.String item)
Add the Specified Item at the Locationvoid
add(java.lang.String item)
Add the Specified Itemvoid
addAll(java.lang.String s)
Add all the Items in the Input String #1void
addAll(java.lang.String s, java.lang.String separator)
Add all the Items in the Input String #2void
addAll(java.lang.String s, java.lang.String separator, boolean isMultiToken)
Add all the Items in the Input String #3void
addAll(ItemList itemList)
Add all the Items in the List #1void
clear()
Clear the Listjava.lang.String
get(int i)
Retrieve the Indexed Itemjava.lang.String[]
getArray()
Retrieve the Array of Itemsjava.util.List
getItems()
Retrieve the List of Itemsvoid
reset()
Reset the Listvoid
setSP(java.lang.String separator)
Set the Separatorint
size()
Retrieve the Number of Itemsvoid
split(java.lang.String s, java.lang.String separator, java.util.List appendList)
Split the String using the Separatorvoid
split(java.lang.String s, java.lang.String separator, java.util.List appendList, boolean isMultiToken)
Split the String using the Separatorjava.lang.String
toString()
java.lang.String
toString(java.lang.String separator)
Generate the Item-separated StringMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
ItemList
public ItemList()Empty ItemList Constructor -
ItemList
public ItemList(java.lang.String s)ItemList Constructor #1- Parameters:
s
- Input String
-
ItemList
public ItemList(java.lang.String s, java.lang.String separator)ItemList Constructor #2- Parameters:
s
- Input Stringseparator
- Separator
-
ItemList
public ItemList(java.lang.String s, java.lang.String separator, boolean isMultiToken)ItemList Constructor #3- Parameters:
s
- Input Stringseparator
- SeparatorisMultiToken
- TRUE - Token is Multiple
-
-
Method Details
-
split
public void split(java.lang.String s, java.lang.String separator, java.util.List appendList)Split the String using the Separator- Parameters:
s
- Input Stringseparator
- SeparatorappendList
- List to Append to
-
split
public void split(java.lang.String s, java.lang.String separator, java.util.List appendList, boolean isMultiToken)Split the String using the Separator- Parameters:
s
- Input Stringseparator
- SeparatorappendList
- List to Append toisMultiToken
- TRUE - Token is Multiple
-
getItems
public java.util.List getItems()Retrieve the List of Items- Returns:
- List of Items
-
getArray
public java.lang.String[] getArray()Retrieve the Array of Items- Returns:
- Array of Items
-
setSP
public void setSP(java.lang.String separator)Set the Separator- Parameters:
separator
- The Separator
-
add
public void add(int i, java.lang.String item)Add the Specified Item at the Location- Parameters:
i
- Locationitem
- Item
-
add
public void add(java.lang.String item)Add the Specified Item- Parameters:
item
- Item
-
addAll
Add all the Items in the List #1- Parameters:
itemList
- List of Items
-
addAll
public void addAll(java.lang.String s)Add all the Items in the Input String #1- Parameters:
s
- Input String
-
addAll
public void addAll(java.lang.String s, java.lang.String separator)Add all the Items in the Input String #2- Parameters:
s
- Input Stringseparator
- Separator
-
addAll
public void addAll(java.lang.String s, java.lang.String separator, boolean isMultiToken)Add all the Items in the Input String #3- Parameters:
s
- Input Stringseparator
- SeparatorisMultiToken
- TRUE - Multiple Token
-
get
public java.lang.String get(int i)Retrieve the Indexed Item- Parameters:
i
- 0-based- Returns:
- i
-
size
public int size()Retrieve the Number of Items- Returns:
- Number of Items
-
toString
public java.lang.String toString()- Overrides:
toString
in classjava.lang.Object
-
toString
public java.lang.String toString(java.lang.String separator)Generate the Item-separated String- Parameters:
separator
- Separator- Returns:
- Item-separated String
-
clear
public void clear()Clear the List -
reset
public void reset()Reset the List
-