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 Constructor
    ItemList​(java.lang.String s)
    ItemList Constructor #1
    ItemList​(java.lang.String s, java.lang.String separator)
    ItemList Constructor #2
    ItemList​(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 Location
    void add​(java.lang.String item)
    Add the Specified Item
    void addAll​(java.lang.String s)
    Add all the Items in the Input String #1
    void addAll​(java.lang.String s, java.lang.String separator)
    Add all the Items in the Input String #2
    void addAll​(java.lang.String s, java.lang.String separator, boolean isMultiToken)
    Add all the Items in the Input String #3
    void addAll​(ItemList itemList)
    Add all the Items in the List #1
    void clear()
    Clear the List
    java.lang.String get​(int i)
    Retrieve the Indexed Item
    java.lang.String[] getArray()
    Retrieve the Array of Items
    java.util.List getItems()
    Retrieve the List of Items
    void reset()
    Reset the List
    void setSP​(java.lang.String separator)
    Set the Separator
    int size()
    Retrieve the Number of Items
    void split​(java.lang.String s, java.lang.String separator, java.util.List appendList)
    Split the String using the Separator
    void split​(java.lang.String s, java.lang.String separator, java.util.List appendList, boolean isMultiToken)
    Split the String using the Separator
    java.lang.String toString()  
    java.lang.String toString​(java.lang.String separator)
    Generate the Item-separated String

    Methods 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 String
      separator - Separator
    • ItemList

      public ItemList​(java.lang.String s, java.lang.String separator, boolean isMultiToken)
      ItemList Constructor #3
      Parameters:
      s - Input String
      separator - Separator
      isMultiToken - 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 String
      separator - Separator
      appendList - 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 String
      separator - Separator
      appendList - List to Append to
      isMultiToken - 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 - Location
      item - Item
    • add

      public void add​(java.lang.String item)
      Add the Specified Item
      Parameters:
      item - Item
    • addAll

      public void addAll​(ItemList itemList)
      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 String
      separator - 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 String
      separator - Separator
      isMultiToken - 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 class java.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