Uses of Class
spark.data.SV

Packages that use SV
spark.data The Spark data facility provides a general mechanism for accessing objects and their components. 
spark.data.io The Spark IO system contains classes for persisting and serializing Spark objects. 
 

Uses of SV in spark.data
 

Methods in spark.data that return SV
static SV SV.askFile()
           
static SV SV.askFile(java.lang.String[] pkgs)
           
 SV SV.expand(SO model)
           
 SV SV.get(int idx)
           
 SV SArray.get(int index)
           
 SV SA.get(int index)
          The value stored at index.
 SV SV.get(java.lang.String name)
           
 SV SOReflect.get(java.lang.String name)
           
 SV SObj.get(java.lang.String name)
           
 SV SO.get(java.lang.String name)
          This will return the value of the named attribute.
static SV SV.json(java.lang.String source)
          This will parse a string in JSON format and return the corresponding SV.
static SV SV.json(java.lang.String[] pkgs, java.lang.String source)
          This will parse a string in JSON format using class names only from the specified packages.
static SV SV.son(java.lang.String source)
          This will parse a string in SON format and return the corresponding SV.
static SV SV.son(java.lang.String[] pkgs, java.lang.String source)
          This will parse a string in SON format using class names only from the specified packages.
static SV SV.url(java.lang.String theURL)
          This will read an SV from a file referenced by a URL.
static SV SV.url(java.lang.String[] pkgs, java.lang.String theURL)
          This will read an SV from a file referenced by a URL.
 

Methods in spark.data with parameters of type SV
 void SArray.add(SV val)
           
 void SA.add(SV val)
          Adds a new value to the end of the array
 boolean SV.equals(SV v)
           
 void SArray.insert(int index, SV val)
           
 void SA.insert(int index, SV val)
          Inserts a value into the array at the specified index.
 boolean SV.match(SV v)
           
 void SArray.set(int index, SV val)
           
 void SA.set(int index, SV val)
          Changes the value at a particular index
 void SOReflect.set(java.lang.String name, SV val)
           
 void SObj.set(java.lang.String name, SV value)
           
 void SO.set(java.lang.String name, SV value)
          This will set the value of the named attribute.
 

Uses of SV in spark.data.io
 

Methods in spark.data.io that return SV
 SV SparkReader.read()
          This is the heart of the reader.
 SV SONReader.read()
           
 SV JSONReader.read()
           
 

Methods in spark.data.io with parameters of type SV
 java.lang.String SparkWriter.toString(SV value)
          This will write the value to a String.
 java.lang.String SONWriter.toString(SV value)
           
 java.lang.String JSONWriter.toString(SV value)
           
 void SparkWriter.write(SV value)
          This is the heart of the SparkWriter.
 void SONWriter.write(SV value)
           
 void JSONWriter.write(SV value)