public class PlateWriter extends PrintWriter
Formats |
|---|
| Plate Map |
| Result Table |
| JSON |
| XML |
Example Result Plate Map:
| Result | ||||||
| 1 | 2 | 3 | 4 | 5 | 6 | |
| A | 9114 | 2667 | 4214 | 5154 | 1293 | 7882 |
| B | 8953 | 4827 | 5149 | 9792 | 2514 | 6448 |
| C | 6328 | 4896 | 5130 | 9655 | 5120 | 1485 |
| D | 2661 | 5290 | 4057 | 2374 | 1200 | 2724 |
Example Result Table:
| Result | |
| Index | Value |
| A1 | 4877 |
| A2 | 5032 |
| A3 | 6723 |
| B1 | 4981 |
Example Result JSON:
{
"results" : [ {
"type" : "Integer",
"label" : "Example Result",
"size" : 10,
"wells" : {
"A11" : 5645,
"A2" : 6149,
"A5" : 5846,
"D10" : 5895,
"D2" : 5452,
"E4" : 5682,
"E8" : 6116,
"E9" : 4945,
"G6" : 5874,
"H1" : 4911
}
} ]
}
Example Result XML:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<results>
<result>
<type>Double</type>
<label>Example Result</label>
<size>3</size>
<wells>
<well>
<index>A2</index>
<value>55873951592640616</value>
</well>
<well>
<index>A3</index>
<value>5303191840271489</value>
</well>
<well>
<index>A4</index>
<value>4902962476222037</value>
</well>
</wells>
</result>
</results>
Example Well JSON:
{
"wells" : [ {
"type" : "Integer",
"index" : "F8",
"size" : 24,
"values" : [ 1511, 2882, 5254 ]
} ]
}
Example Well Set JSON:
{
"wellsets" : [ {
"type" : "Integer",
"label" : "Example Well Set",
"size" : 1,
"wells" : [ {
"index" : "A3",
"values" : [ 4470, 9116, 5215 ]
} ]
} ]
}
Example Plate JSON:
{
"plates" : [ {
"type" : "Integer",
"label" : "Example Plate",
"descriptor" : "96-Well",
"rows" : 8,
"columns" : 12,
"size" : 1,
"wellsets" : [ {
"label" : "Example Well Set",
"size" : 3,
"wells" : [ "C5", "D4", "F7" ]
} ],
"wells" : [ {
"index" : "A7",
"values" : [ 4451, 3453, 5592 ]
} ]
} ]
}
Example Stack JSON:
{
"stacks" : [ {
"type" : "Integer",
"label" : "Example Stack",
"rows" : 8,
"columns" : 12,
"size" : 1,
"plates" : [ {
"type" : "Integer",
"label" : "Example Plate",
"descriptor" : "96-Well",
"rows" : 8,
"columns" : 12,
"size" : 1,
"wellsets" : [ {
"label" : "Example Well Set",
"size" : 3,
"wells" : [ "B6", "G1", "G12" ]
} ],
"wells" : [ {
"index" : "A2",
"values" : [ 3594, 2817, 2100 ]
} ]
} ]
} ]
}
Example Well XML:
<wells>
<well>
<type>Double</type>
<index>H8</index>
<size>24</size>
<values>
<value>7870</value>
<value>7296</value>
<value>3898</value>
</values>
</well>
</wells>
Example Well Set XML:
<wellsets>
<wellset>
<type>Double</type>
<label>Example Well Set</label>
<size>1</size>
<wells>
<well>
<index>A11</index>
<values>
<value>1739</value>
<value>5465</value>
<value>5412</value>
</values>
</well>
</wells>
</wellset>
</wellsets>
Example Plate XML:
<plates>
<plate>
<type>Double</type>
<label>Example Plate</label>
<descriptor>96-Well</descriptor>
<rows>8</rows>
<columns>12</columns>
<size>1</size>
<wellsets>
<wellset>
<label>Example Well Set</label>
<size>3</size>
<wells>
<well>B12</well>
<well>E2</well>
<well>H8</well>
</wells>
</wellset>
</wellsets>
<wells>
<well>
<index>A5</index>
<values>
<value>1389</value>
<value>9246</value>
<value>1948</value>
</values>
</well>
</wells>
</plate>
</plates>
Example Stack XML:
<stacks>
<stack>
<type>Double</type>
<label>Example Stack</label>
<rows>8</rows>
<columns>12</columns>
<size>1</size>
<plates>
<plate>
<type>Double</type>
<label>Example Plate</label>
<descriptor>96-Well</descriptor>
<rows>8</rows>
<columns>12</columns>
<size>1</size>
<wellsets>
<wellset>
<label>Example Well Set</label>
<size>3</size>
<wells>
<well>B7</well>
<well>H2</well>
<well>H3</well>
</wells>
</wellset>
</wellsets>
<wells>
<well>
<index>A2</index>
<values>
<value>1303</value>
<value>5321</value>
<value>2808</value>
</values>
</well>
</wells>
</plate>
</plates>
</stack>
</stacks>
out| Constructor and Description |
|---|
PlateWriter(File file)
Creates a new PlateWriterInteger without automatic line flushing using
the specified file.
|
PlateWriter(File file,
String csn)
Creates a new PlateWriterInteger without automatic line flushing using
the specified file and character set.
|
PlateWriter(OutputStream out)
Creates a new PlateWriterInteger, without automatic line flushing using
the OutputStream.
|
PlateWriter(OutputStream out,
boolean autoFlush)
Creates a new PlateWriterInteger with automatic line flushing, using the
OutputStream.
|
PlateWriter(String fileName)
Creates a new PlateWriterInteger without automatic line flushing using the
specified file name.
|
PlateWriter(String fileName,
String csn)
Creates a new PlateWriterInteger without automatic line flushing using the
specified file name and character set.
|
PlateWriter(Writer out)
Creates a new PlateWriterInteger without automatic line flushing using the
writer.
|
PlateWriter(Writer out,
boolean autoFlush)
Creates a new PlateWriterInteger with automatic line flushing using the
writer.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDelimiter()
Returns the delimiter.
|
void |
plateToJSON(Collection<Plate> collection)
Prints the collection of plates in a JSON format.
|
void |
plateToJSON(Plate plate)
Prints the plate values in a JSON format.
|
void |
plateToJSON(Plate[] array)
Prints the array of plates in a JSON format.
|
String |
plateToJSONAsString(Collection<Plate> collection)
Returns a string containing the collection of plates in a JSON format.
|
String |
plateToJSONAsString(Plate plate)
Returns a string containing the plate values in a JSON format.
|
String |
plateToJSONAsString(Plate[] array)
Returns a string containing the array of plates in a JSON format.
|
void |
plateToXML(Collection<Plate> collection)
Prints the collection of plates in an XML format.
|
void |
plateToXML(Plate plate)
Prints the plate values in an XML format.
|
void |
plateToXML(Plate[] array)
Prints the array of plates in an XML format.
|
String |
plateToXMLAsString(Collection<Plate> collection)
Returns a string containing the collection of plates in an XML format.
|
String |
plateToXMLAsString(Plate plate)
Returns a string containing the plate values in an XML format.
|
String |
plateToXMLAsString(Plate[] array)
Returns a string containing the array of plates in an XML format.
|
void |
printMapResult(Map<Well,Integer> data,
int rows,
int columns,
String label)
Prints the plate map.
|
String |
printMapResultAsString(Map<Well,Integer> data,
int rows,
int columns,
String label)
Returns a string containing the plate map.
|
void |
printTableResult(Map<Well,Integer> data,
String label)
Prints the well value pairs as a delimiter separated table.
|
String |
printTableResultAsString(Map<Well,Integer> data,
String label)
Resturns a string holding the well value pairs as a delimiter separated table.
|
void |
printXMLStack(StackListXML stackList)
Prints the stack as an XML object.
|
String |
printXMLStackAsString(StackListXML stackList)
Returns a string containing the stack list as an XML object.
|
void |
resultToJSON(List<Map<Well,Integer>> data)
Prints the well value pairs in a JSON format for each data set.
|
void |
resultToJSON(List<Map<Well,Integer>> data,
List<String> labels)
Prints the well value pairs in a JSON format for each data set using the
specified labels.
|
void |
resultToJSON(Map<Well,Integer> data)
Prints the well value pairs in a JSON format.
|
void |
resultToJSON(Map<Well,Integer> data,
String label)
Prints the well value pairs in a JSON format using the label.
|
String |
resultToJSONAsString(List<Map<Well,Integer>> data)
Returns a string containing the well value pairs in a JSON format for each data set.
|
String |
resultToJSONAsString(List<Map<Well,Integer>> data,
List<String> labels)
Returns a string containing the well value pairs in a JSON format for each data set using the
specified labels.
|
String |
resultToJSONAsString(Map<Well,Integer> data)
Returns a string containing the well value pairs in a JSON format.
|
String |
resultToJSONAsString(Map<Well,Integer> data,
String label)
Returns a string containing the well value pairs in a JSON format using the label.
|
void |
resultToPlateMap(List<Map<Well,Integer>> data,
int type)
Prints the plate map for each data set in the list.
|
void |
resultToPlateMap(List<Map<Well,Integer>> data,
int rows,
int columns)
Prints the plate map for each data set in the list.
|
void |
resultToPlateMap(List<Map<Well,Integer>> data,
int rows,
int columns,
List<String> labels)
Prints the plate map for each data set in the list.
|
void |
resultToPlateMap(List<Map<Well,Integer>> data,
int type,
List<String> labels)
Prints the plate map for each data set in the list.
|
void |
resultToPlateMap(Map<Well,Integer> data,
int type)
Prints the plate map.
|
void |
resultToPlateMap(Map<Well,Integer> data,
int rows,
int columns)
Prints the plate map.
|
void |
resultToPlateMap(Map<Well,Integer> data,
int rows,
int columns,
String label)
Prints the plate map.
|
void |
resultToPlateMap(Map<Well,Integer> data,
int type,
String label)
Prints the plate map.
|
String |
resultToPlateMapAsString(List<Map<Well,Integer>> data,
int type)
Returns a string holding the plate map for each data set in the list.
|
String |
resultToPlateMapAsString(List<Map<Well,Integer>> data,
int rows,
int columns)
Returns a string holding the plate map for each data set in the list.
|
String |
resultToPlateMapAsString(List<Map<Well,Integer>> data,
int rows,
int columns,
List<String> labels)
Returns a string containing the plate map for each data set in the list.
|
String |
resultToPlateMapAsString(List<Map<Well,Integer>> data,
int type,
List<String> labels)
Returns a string containing the plate map for each data set in the list.
|
String |
resultToPlateMapAsString(Map<Well,Integer> data,
int type)
Returns a string containing the plate map.
|
String |
resultToPlateMapAsString(Map<Well,Integer> data,
int rows,
int columns)
Returns a string holding the plate map.
|
String |
resultToPlateMapAsString(Map<Well,Integer> data,
int rows,
int columns,
String label)
Returns a string containing the plate map.
|
String |
resultToPlateMapAsString(Map<Well,Integer> data,
int type,
String label)
Returns a string holding the plate map.
|
void |
resultToTable(List<Map<Well,Integer>> data)
Prints each set of well value pairs as a delimiter separated table.
|
void |
resultToTable(List<Map<Well,Integer>> data,
List<String> labels)
Prints the well value pairs as a delimiter separated table.
|
void |
resultToTable(Map<Well,Integer> data)
Prints the well value pairs as a delimiter separated table.
|
void |
resultToTable(Map<Well,Integer> data,
String label)
Prints the well value pairs as a delimiter separated table.
|
String |
resultToTableAsString(List<Map<Well,Integer>> data)
Returns a string containing each set of well value pairs as a delimiter
separated table.
|
String |
resultToTableAsString(List<Map<Well,Integer>> data,
List<String> labels)
Returns a string containing the well value pairs as a delimiter separated
table.
|
String |
resultToTableAsString(Map<Well,Integer> data)
Returns a string containing the well value pairs as a delimiter separated
table.
|
String |
resultToTableAsString(Map<Well,Integer> data,
String label)
Returns a string containing the well value pairs as a delimiter separated
table.
|
void |
resultToXML(Collection<Map<Well,Integer>> collection)
Prints the collection of result values in an XML format.
|
void |
resultToXML(Collection<Map<Well,Integer>> collection,
List<String> labels)
Prints the collection of result values in an XML format.
|
void |
resultToXML(Map<Well,Integer> map)
Prints the well result values in an XML format.
|
void |
resultToXML(Map<Well,Integer> map,
String label)
Prints the well result values in an XML format.
|
String |
resultToXMLAsString(Collection<Map<Well,Integer>> collection)
Returns a string containing the collection of result values in an XML format.
|
String |
resultToXMLAsString(Collection<Map<Well,Integer>> collection,
List<String> labels)
Returns a string containing the collection of result values in an XML format.
|
String |
resultToXMLAsString(Map<Well,Integer> map)
Returns a string containing the result values in an XML format.
|
String |
resultToXMLAsString(Map<Well,Integer> map,
String label)
Returns a string containing the result values in an XML format.
|
void |
setDelimiter(String delimiter)
Sets the delimiter for the plate writer.
|
void |
setToJSON(Collection<WellSet> collection)
Prints the collection of well sets in a JSON format.
|
void |
setToJSON(WellSet set)
Prints the well set values in a JSON format.
|
void |
setToJSON(WellSet[] array)
Prints the well set values in a JSON format.
|
String |
setToJSONAsString(Collection<WellSet> collection)
Returns a string containing the collection of well sets in a JSON format.
|
String |
setToJSONAsString(WellSet set)
Returns a string containing the well set values in a JSON format.
|
String |
setToJSONAsString(WellSet[] array)
Returns a string containing the well set values in a JSON format.
|
void |
setToXML(Collection<WellSet> collection)
Prints the collection of well sets in an XML format.
|
void |
setToXML(WellSet set)
Prints the well set values in an XML format.
|
void |
setToXML(WellSet[] array)
Prints the well set values in an XML format.
|
String |
setToXMLAsString(Collection<WellSet> collection)
Returns a string containing the collection of well sets in an XML format.
|
String |
setToXMLAsString(WellSet set)
Returns a string containing the well set values in an XML format.
|
String |
setToXMLAsString(WellSet[] array)
Returns a string containing the well set values in an XML format.
|
void |
stackToJSON(Collection<Stack> collection)
Prints the collection of plate stacks in a JSON format.
|
void |
stackToJSON(Stack stack)
Prints the plate stack in a JSON format.
|
void |
stackToJSON(Stack[] array)
Prints the array of plate stacks in a JSON format.
|
String |
stackToJSONAsString(Collection<Stack> collection)
Returns a string containing the collection of plate stacks in a JSON format.
|
String |
stackToJSONAsString(Stack stack)
Returns a string containing the plate stack in a JSON format.
|
String |
stackToJSONAsString(Stack[] array)
Prints the array of plate stacks in a JSON format.
|
void |
stackToXML(Collection<Stack> collection)
Prints the collection of plate stacks in an XML format.
|
void |
stackToXML(Stack stack)
Prints the plate stack in an XML format.
|
void |
stackToXML(Stack[] array)
Prints the array of plate stacks in an XML format.
|
String |
stackToXMLAsString(Collection<Stack> collection)
Returns a string containing the collection of plate stacks in an XML format.
|
String |
stackToXMLAsString(Stack stack)
Returns a string containing the plate stack in an XML format.
|
String |
stackToXMLAsString(Stack[] array)
Returns a string containing the array of plate stacks in an XML format.
|
void |
wellToJSON(Collection<Well> collection)
Prints the collection of wells in a JSON format.
|
void |
wellToJSON(Well well)
Prints the well values in a JSON format.
|
void |
wellToJSON(Well[] array)
Prints the wells values in the array in a JSON format.
|
String |
wellToJSONAsString(Collection<Well> collection)
Returns a string containing the collection of wells in a JSON format.
|
String |
wellToJSONAsString(Well well)
Returns a string containing the well values in a JSON format.
|
String |
wellToJSONAsString(Well[] array)
Returns a string containing the well values in the array in a JSON format.
|
void |
wellToXML(Collection<Well> collection)
Prints the collection of well values in an XML format.
|
void |
wellToXML(Well well)
Prints the well values in an XML format.
|
void |
wellToXML(Well[] array)
Prints the well values in the array in an XML format.
|
String |
wellToXMLAsString(Collection<Well> collection)
Returns a string containing the collection of well values in an XML format.
|
String |
wellToXMLAsString(Well well)
Returns a string containing the well values in an XML format.
|
String |
wellToXMLAsString(Well[] array)
Prints the well values in the array in an XML format.
|
append, append, append, checkError, clearError, close, flush, format, format, print, print, print, print, print, print, print, print, print, printf, printf, println, println, println, println, println, println, println, println, println, println, setError, write, write, write, write, writepublic PlateWriter(File file) throws FileNotFoundException
File - the output fileFileNotFoundExceptionpublic PlateWriter(File file, String csn) throws FileNotFoundException, UnsupportedEncodingException
File - the output fileString - the character setUnsupportedEncodingExceptionFileNotFoundExceptionpublic PlateWriter(OutputStream out)
OutputStream - the output streampublic PlateWriter(OutputStream out, boolean autoFlush)
OutputStream - the output streamboolean - sets automatic flush when truepublic PlateWriter(String fileName) throws FileNotFoundException
String - the file nameFileNotFoundExceptionpublic PlateWriter(String fileName, String csn) throws FileNotFoundException, UnsupportedEncodingException
String - the file nameString - the character setUnsupportedEncodingExceptionFileNotFoundExceptionpublic PlateWriter(Writer out)
Writer - the writerpublic PlateWriter(Writer out, boolean autoFlush)
Writer - the writerboolean - sets auto flush when truepublic void resultToPlateMap(Map<Well,Integer> data, int type) throws FileNotFoundException, UnsupportedEncodingException
Map - Integer> the data set int - the plate typeUnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToPlateMapAsString(Map<Well,Integer> data, int type)
Map - Integer> the data set int - the plate typepublic void resultToPlateMap(List<Map<Well,Integer>> data, int type) throws FileNotFoundException, UnsupportedEncodingException
Listint - the plate typeUnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToPlateMapAsString(List<Map<Well,Integer>> data, int type)
Listint - the plate typepublic void resultToPlateMap(Map<Well,Integer> data, int rows, int columns) throws FileNotFoundException, UnsupportedEncodingException
Map - Integer> the data set int - number of rowsint - number of columnsUnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToPlateMapAsString(Map<Well,Integer> data, int rows, int columns)
Map - Integer> the data set int - number of rowsint - number of columnspublic void resultToPlateMap(List<Map<Well,Integer>> data, int rows, int columns) throws FileNotFoundException, UnsupportedEncodingException
Listint - number of rowsint - number of columnsUnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToPlateMapAsString(List<Map<Well,Integer>> data, int rows, int columns)
Listint - number of rowsint - number of columnspublic void resultToPlateMap(Map<Well,Integer> data, int type, String label) throws FileNotFoundException, UnsupportedEncodingException
Map - Integer> the data set int - the plate typeString - the data set labelUnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToPlateMapAsString(Map<Well,Integer> data, int type, String label)
Map - Integer> the data set int - the plate typeString - the data set labelpublic void resultToPlateMap(List<Map<Well,Integer>> data, int type, List<String> labels) throws FileNotFoundException, UnsupportedEncodingException
Listint - the plate typeList - list of data set labelsUnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToPlateMapAsString(List<Map<Well,Integer>> data, int type, List<String> labels)
Listint - the plate typeList - list of data set labelspublic void resultToPlateMap(Map<Well,Integer> data, int rows, int columns, String label) throws FileNotFoundException, UnsupportedEncodingException
Map - Integer> the data set int - number of rowsint - number of columnsString - the data set labelUnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToPlateMapAsString(Map<Well,Integer> data, int rows, int columns, String label)
Map - Integer> the data set int - number of rowsint - number of columnsString - the data set labelpublic void resultToPlateMap(List<Map<Well,Integer>> data, int rows, int columns, List<String> labels) throws FileNotFoundException, UnsupportedEncodingException
Listint - number of rowsint - number of columnsList - list of data set labelsUnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToPlateMapAsString(List<Map<Well,Integer>> data, int rows, int columns, List<String> labels)
Listint - number of rowsint - number of columnsList - list of data set labelspublic void printMapResult(Map<Well,Integer> data, int rows, int columns, String label) throws FileNotFoundException, UnsupportedEncodingException
Map - Integer> the data set int - number of rowsint - number of columnsString - the data set labelFileNotFoundExceptionUnsupportedEncodingExceptionpublic String printMapResultAsString(Map<Well,Integer> data, int rows, int columns, String label)
Map - Integer> the data set int - number of rowsint - number of columnsString - the data set labelpublic void resultToTable(Map<Well,Integer> data) throws FileNotFoundException, UnsupportedEncodingException
Map - Integer> the data set UnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToTableAsString(Map<Well,Integer> data)
Map - Integer> the data set public void resultToTable(List<Map<Well,Integer>> data) throws FileNotFoundException, UnsupportedEncodingException
ListUnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToTableAsString(List<Map<Well,Integer>> data)
Listpublic void resultToTable(Map<Well,Integer> data, String label) throws FileNotFoundException, UnsupportedEncodingException
Map - Integer> the data set String - the data set labelUnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToTableAsString(Map<Well,Integer> data, String label)
Map - Integer> the data set String - the data set labelpublic void resultToTable(List<Map<Well,Integer>> data, List<String> labels) throws FileNotFoundException, UnsupportedEncodingException
ListList - list of data set labelsUnsupportedEncodingExceptionFileNotFoundExceptionpublic String resultToTableAsString(List<Map<Well,Integer>> data, List<String> labels)
ListList - list of data set labelspublic void printTableResult(Map<Well,Integer> data, String label) throws FileNotFoundException, UnsupportedEncodingException
Map - Integer> the data set String - the data set labelUnsupportedEncodingExceptionFileNotFoundExceptionpublic String printTableResultAsString(Map<Well,Integer> data, String label)
Map - Integer> the data set String - the data set labelpublic void resultToJSON(Map<Well,Integer> data) throws IOException
Map - Integer> the data set IOExceptionpublic String resultToJSONAsString(Map<Well,Integer> data) throws com.fasterxml.jackson.core.JsonProcessingException
Map - Integer> the data set com.fasterxml.jackson.core.JsonProcessingExceptionpublic void resultToJSON(List<Map<Well,Integer>> data) throws IOException
ListIOExceptionpublic String resultToJSONAsString(List<Map<Well,Integer>> data) throws com.fasterxml.jackson.core.JsonProcessingException
Listcom.fasterxml.jackson.core.JsonProcessingExceptionpublic void resultToJSON(Map<Well,Integer> data, String label) throws IOException
Map - Integer> the data set String - the data set labelIOExceptionpublic String resultToJSONAsString(Map<Well,Integer> data, String label) throws IOException
Map - Integer> the data set String - the data set labelIOExceptionpublic void resultToJSON(List<Map<Well,Integer>> data, List<String> labels) throws IOException
ListList - the list of data set labelsIOExceptionpublic String resultToJSONAsString(List<Map<Well,Integer>> data, List<String> labels) throws com.fasterxml.jackson.core.JsonProcessingException
ListList - the list of data set labelscom.fasterxml.jackson.core.JsonProcessingExceptionpublic void wellToJSON(Well well) throws IOException
Well - the wellIOExceptionpublic String wellToJSONAsString(Well well) throws com.fasterxml.jackson.core.JsonProcessingException
Well - the wellcom.fasterxml.jackson.core.JsonProcessingExceptionpublic void wellToJSON(Collection<Well> collection) throws IOException
Collection - the collection of wellsIOExceptionpublic String wellToJSONAsString(Collection<Well> collection) throws com.fasterxml.jackson.core.JsonProcessingException
Collection - the collection of wellscom.fasterxml.jackson.core.JsonProcessingExceptionpublic void wellToJSON(Well[] array) throws IOException
WellInteger[] - the array of wellsIOExceptionpublic String wellToJSONAsString(Well[] array) throws com.fasterxml.jackson.core.JsonProcessingException
WellInteger[] - the array of wellscom.fasterxml.jackson.core.JsonProcessingExceptionpublic void setToJSON(WellSet set) throws IOException
WellSet - the well setIOExceptionpublic String setToJSONAsString(WellSet set) throws com.fasterxml.jackson.core.JsonProcessingException
WellSet - the well setcom.fasterxml.jackson.core.JsonProcessingExceptionpublic void setToJSON(Collection<WellSet> collection) throws IOException
Collection - the collection of well setsIOExceptionpublic String setToJSONAsString(Collection<WellSet> collection) throws com.fasterxml.jackson.core.JsonProcessingException
Collection - the collection of well setscom.fasterxml.jackson.core.JsonProcessingExceptionpublic void setToJSON(WellSet[] array) throws IOException
WellSetInteger[] - the array of well setsIOExceptionpublic String setToJSONAsString(WellSet[] array) throws com.fasterxml.jackson.core.JsonProcessingException
WellSetInteger[] - the array of well setscom.fasterxml.jackson.core.JsonProcessingExceptionpublic void plateToJSON(Plate plate) throws IOException
Plate - the plateIOExceptionpublic String plateToJSONAsString(Plate plate) throws com.fasterxml.jackson.core.JsonProcessingException
Plate - the platecom.fasterxml.jackson.core.JsonProcessingExceptionpublic void plateToJSON(Collection<Plate> collection) throws IOException
Collection - the collection of platesIOExceptionpublic String plateToJSONAsString(Collection<Plate> collection) throws com.fasterxml.jackson.core.JsonProcessingException
Collection - the collection of platescom.fasterxml.jackson.core.JsonProcessingExceptionpublic void plateToJSON(Plate[] array) throws IOException
PlateInteger[] - the array of platesIOExceptionpublic String plateToJSONAsString(Plate[] array) throws com.fasterxml.jackson.core.JsonProcessingException
PlateInteger[] - the array of platescom.fasterxml.jackson.core.JsonProcessingExceptionpublic void stackToJSON(Stack stack) throws IOException
Stack - the plate stackIOExceptionpublic String stackToJSONAsString(Stack stack) throws com.fasterxml.jackson.core.JsonProcessingException
Stack - the plate stackcom.fasterxml.jackson.core.JsonProcessingExceptionpublic void stackToJSON(Collection<Stack> collection) throws IOException
Collection - the collection of plate stacksIOExceptionpublic String stackToJSONAsString(Collection<Stack> collection) throws com.fasterxml.jackson.core.JsonProcessingException
Collection - the collection of plate stackscom.fasterxml.jackson.core.JsonProcessingExceptionpublic void stackToJSON(Stack[] array) throws IOException
StackInteger[] - the array of plate stacksIOExceptionpublic String stackToJSONAsString(Stack[] array) throws com.fasterxml.jackson.core.JsonProcessingException
StackInteger[] - the array of plate stackscom.fasterxml.jackson.core.JsonProcessingExceptionpublic void resultToXML(Map<Well,Integer> map) throws IOException, ParserConfigurationException, TransformerException
Map - Integer> the result map IOExceptionParserConfigurationExceptionTransformerExceptionpublic String resultToXMLAsString(Map<Well,Integer> map)
Map - Integer> the result map public void resultToXML(Map<Well,Integer> map, String label) throws IOException, ParserConfigurationException, TransformerException
Map - Integer> the result map String - the labelIOExceptionParserConfigurationExceptionTransformerExceptionpublic String resultToXMLAsString(Map<Well,Integer> map, String label)
Map - Integer> the result map String - the labelpublic void resultToXML(Collection<Map<Well,Integer>> collection) throws IOException, TransformerException, ParserConfigurationException
Collection - the collection of well setsIOExceptionTransformerExceptionParserConfigurationExceptionpublic String resultToXMLAsString(Collection<Map<Well,Integer>> collection)
Collection - the collection of well setspublic void resultToXML(Collection<Map<Well,Integer>> collection, List<String> labels) throws IOException, TransformerException, ParserConfigurationException
Collection - the collection of well setsList - result labelsIOExceptionTransformerExceptionParserConfigurationExceptionpublic String resultToXMLAsString(Collection<Map<Well,Integer>> collection, List<String> labels)
Collection - the collection of well setsList - result labelspublic void wellToXML(Well well) throws IOException, ParserConfigurationException, TransformerException
Well - the setIOExceptionParserConfigurationExceptionTransformerExceptionpublic String wellToXMLAsString(Well well)
Well - the setpublic void wellToXML(Collection<Well> collection) throws IOException, TransformerException, ParserConfigurationException
Collection - the collection of wellsIOExceptionTransformerExceptionParserConfigurationExceptionpublic String wellToXMLAsString(Collection<Well> collection) throws IOException, TransformerException, ParserConfigurationException
Collection - the collection of wellsIOExceptionTransformerExceptionParserConfigurationExceptionpublic void wellToXML(Well[] array) throws IOException, ParserConfigurationException, TransformerException
WellInteger[] - the array of wellsIOExceptionParserConfigurationExceptionTransformerExceptionpublic String wellToXMLAsString(Well[] array) throws IOException, ParserConfigurationException, TransformerException
WellInteger[] - the array of wellsIOExceptionParserConfigurationExceptionTransformerExceptionpublic void setToXML(WellSet set) throws IOException, ParserConfigurationException, TransformerException
WellSet - the well setIOExceptionParserConfigurationExceptionTransformerExceptionpublic String setToXMLAsString(WellSet set)
WellSet - the well setpublic void setToXML(Collection<WellSet> collection) throws IOException, TransformerException, ParserConfigurationException
Collection - the collection of well setsIOExceptionTransformerExceptionParserConfigurationExceptionpublic String setToXMLAsString(Collection<WellSet> collection)
Collection - the collection of well setspublic void setToXML(WellSet[] array) throws IOException, ParserConfigurationException, TransformerException
WellSetInteger[] - the array of well setsIOExceptionParserConfigurationExceptionTransformerExceptionpublic String setToXMLAsString(WellSet[] array)
WellSetInteger[] - the array of well setspublic void plateToXML(Plate plate) throws IOException, TransformerException, ParserConfigurationException
Plate - the plateIOExceptionTransformerExceptionParserConfigurationExceptionpublic String plateToXMLAsString(Plate plate)
Plate - the platepublic void plateToXML(Collection<Plate> collection) throws IOException, TransformerException, ParserConfigurationException
Collection - the collection of platesIOExceptionTransformerExceptionParserConfigurationExceptionpublic String plateToXMLAsString(Collection<Plate> collection)
Collection - the collection of platespublic void plateToXML(Plate[] array) throws IOException, ParserConfigurationException, TransformerException
PlateInteger[] - the array of platesIOExceptionParserConfigurationExceptionTransformerExceptionpublic String plateToXMLAsString(Plate[] array)
PlateInteger[] - the array of platespublic void stackToXML(Stack stack) throws IOException, TransformerException, ParserConfigurationException
Stack - the plate stackIOExceptionTransformerExceptionParserConfigurationExceptionpublic String stackToXMLAsString(Stack stack)
Stack - the plate stackpublic void stackToXML(Collection<Stack> collection) throws IOException, ParserConfigurationException, TransformerException
Collection - the collection of plate stacksIOExceptionParserConfigurationExceptionTransformerExceptionpublic String stackToXMLAsString(Collection<Stack> collection)
Collection - the collection of plate stackspublic void stackToXML(Stack[] array) throws IOException, ParserConfigurationException, TransformerException
StackInteger[] - the array of plate stacksIOExceptionParserConfigurationExceptionTransformerExceptionpublic String stackToXMLAsString(Stack[] array)
StackInteger[] - the array of plate stackspublic void printXMLStack(StackListXML stackList) throws IOException, TransformerException
StackListXML - the stack listIOExceptionTransformerExceptionpublic String printXMLStackAsString(StackListXML stackList)
StackListXML - the stack listpublic void setDelimiter(String delimiter)
String - the delimiterpublic String getDelimiter()
Copyright © 2017. All rights reserved.