All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.apidocs.nl.praegus.fitnesse.slim.fixtures.CsvFileFixture.json Maven / Gradle / Ivy

There is a newer version: 1.38.1
Show newest version
{
  "constructors" : [ {
    "readableName" : "csv file fixture",
    "usage" : "| csv file fixture |",
    "name" : "CsvFileFixture",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ ],
    "exceptions" : [ ]
  } ],
  "qualifiedName" : "nl.praegus.fitnesse.slim.fixtures.CsvFileFixture",
  "publicMethods" : [ {
    "readableName" : "set separator",
    "usage" : "| set separator | [separator] | ",
    "contexthelp" : "set separator <separator>",
    "name" : "setSeparator",
    "docString" : "Define a separator character to use. Defaults to comma.\n@param separator The delimiter that separates the fields",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "separator",
      "description" : "The delimiter that separates the fields",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "set csv file",
    "usage" : "| set csv file | [csvFile] | ",
    "contexthelp" : "set csv file <csvFile>",
    "name" : "setCsvFile",
    "docString" : "Set the file to work with\n@param csvFile The file to use",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "csvFile",
      "description" : "The file to use",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "value of in row where is",
    "usage" : "| value of | [resultColumn] | in row where | [findByColumn] | is | [findByColumnValue] |",
    "contexthelp" : "value of <resultColumn> in row where <findByColumn> is <findByColumnValue>",
    "name" : "valueOfInRowWhereIs",
    "docString" : "Get the value of a cell by matching a given value in another column\n usage: | value of | [resultColumn] | in row where | [findByColumn] | is | [findByColumnValue] |\n@param resultColumn The column to extract the value from\n@param findByColumn The column that contains the given value\n@param findByColumnValue The value to search for\n@return The value of 'resultColumn' in the row where 'findByColumn' has the value 'findByColumnValue'",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "resultColumn",
      "description" : "The column to extract the value from",
      "type" : "String"
    }, {
      "name" : "findByColumn",
      "description" : "The column that contains the given value",
      "type" : "String"
    }, {
      "name" : "findByColumnValue",
      "description" : "The value to search for",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "value of in row where is in",
    "usage" : "| value of | [resultColumn] | in row where | [findByColumn] | is | [findByColumnValue] | in | [filename] |",
    "contexthelp" : "value of <resultColumn> in row where <findByColumn> is <findByColumnValue> in <filename>",
    "name" : "valueOfInRowWhereIsIn",
    "docString" : "Get the value of a cell by matching a given value in another column\n usage: | value of | [resultColumn] | in row where | [findByColumn] | is | [findByColumnValue] | in | [filename] |\n@param resultColumn The column to extract the value from\n@param findByColumn The column that contans the given value\n@param findByColumnValue The value to search for\n@param filename The file to search in\n@return The value of 'resultColumn' in the row where 'findByColumn' has the value 'findByColumnValue' in the given file.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "resultColumn",
      "description" : "The column to extract the value from",
      "type" : "String"
    }, {
      "name" : "findByColumn",
      "description" : "The column that contans the given value",
      "type" : "String"
    }, {
      "name" : "findByColumnValue",
      "description" : "The value to search for",
      "type" : "String"
    }, {
      "name" : "filename",
      "description" : "The file to search in",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "value of in row number",
    "usage" : "| value of | [resultColumn] | in row number | [number] |",
    "contexthelp" : "value of <resultColumn> in row number <number>",
    "name" : "valueOfInRowNumber",
    "docString" : "The value of 'resultColumn' in the nth row.\n Usage: | value of | [resultColumn] | in row number | [number] |\n@param resultColumn the column name of the column value to retrieve\n@param rowNumber the row number to retrieve the value from\n@return The value of the specified column in the specified row number",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "resultColumn",
      "description" : "the column name of the column value to retrieve",
      "type" : "String"
    }, {
      "name" : "rowNumber",
      "description" : "the row number to retrieve the value from",
      "type" : "int"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "value of in row number in",
    "usage" : "| value of | [resultColumn] | in row number | [number] | in | [filename] |",
    "contexthelp" : "value of <resultColumn> in row number <number> in <filename>",
    "name" : "valueOfInRowNumberIn",
    "docString" : "The value of 'reultColumn' in the nth row in a given file\n Usage: | value of | [resultColumn] | in row number | [number] | in | [filename] |\n@param resultColumn The column name of the column value to retrieve\n@param rowNumber The row number to retrieve the value from\n@param filename The file to search in\n@return The value of the specified column in the specified row number in the given file",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "resultColumn",
      "description" : "The column name of the column value to retrieve",
      "type" : "String"
    }, {
      "name" : "rowNumber",
      "description" : "The row number to retrieve the value from",
      "type" : "int"
    }, {
      "name" : "filename",
      "description" : "The file to search in",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "name of column",
    "usage" : "| name of column | [column] | ",
    "contexthelp" : "name of column <column>",
    "name" : "nameOfColumn",
    "docString" : "The name of the nth column\n@param column the column number to get the name from\n@return the column name",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "column",
      "description" : "the column number to get the name from",
      "type" : "int"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "name of column in",
    "usage" : "| name of column | [column] | in | [filename] | ",
    "contexthelp" : "name of column <column> in <filename>",
    "name" : "nameOfColumnIn",
    "docString" : "The name of the nth column in the given file\n@param column the column number to get the name from\n@param filename The file to use\n@return the column name",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "column",
      "description" : "the column number to get the name from",
      "type" : "int"
    }, {
      "name" : "filename",
      "description" : "The file to use",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "data in row",
    "usage" : "| data in row | [row] | ",
    "contexthelp" : "data in row <row>",
    "name" : "dataInRow",
    "docString" : "Get the data from a row with a given number as a hashmap (key, val)\n@param row The row number\n@return a map containing key value pairs (column names as keys)",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "row",
      "description" : "The row number",
      "type" : "int"
    } ],
    "exceptions" : [ ],
    "returnType" : "Map<String>"
  }, {
    "readableName" : "data in row where is",
    "usage" : "| data in row where | [column] | is | [lookupValue] | ",
    "contexthelp" : "data in row where <column> is <lookupValue>",
    "name" : "dataInRowWhereIs",
    "docString" : "Get the data from a row where a given column has a given value as a hashmap (key, val)\n@param column The column name\n@param lookupValue The value to find in the given column\n@return a map containing key value pairs (column names as keys)",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "column",
      "description" : "The column name",
      "type" : "String"
    }, {
      "name" : "lookupValue",
      "description" : "The value to find in the given column",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "Map<String>"
  }, {
    "readableName" : "data in row where is in",
    "usage" : "| data in row where | [column] | is | [lookupValue] | in | [filename] | ",
    "contexthelp" : "data in row where <column> is <lookupValue> in <filename>",
    "name" : "dataInRowWhereIsIn",
    "docString" : "Get the data from a row where a given column has a given value in the given file as a hashmap (key, val)\n@param column The column name\n@param lookupValue The value to find in the given column\n@param filename The file to use\n@return a map containing key value pairs (column names as keys)",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "column",
      "description" : "The column name",
      "type" : "String"
    }, {
      "name" : "lookupValue",
      "description" : "The value to find in the given column",
      "type" : "String"
    }, {
      "name" : "filename",
      "description" : "The file to use",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "Map<String>"
  }, {
    "readableName" : "data in row in",
    "usage" : "| data in row | [row] | in | [filename] | ",
    "contexthelp" : "data in row <row> in <filename>",
    "name" : "dataInRowIn",
    "docString" : "Get the data from a row with a given number in a given file as a hashmap (key, val)\n@param row The row number\n@param filename The file to use\n@return a map containing key value pairs (column names as keys)",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "row",
      "description" : "The row number",
      "type" : "int"
    }, {
      "name" : "filename",
      "description" : "The file to use",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "Map<String>"
  }, {
    "readableName" : "number of lines",
    "usage" : "| number of lines |",
    "contexthelp" : "number of lines",
    "name" : "numberOfLines",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ ],
    "exceptions" : [ ],
    "returnType" : "int"
  }, {
    "readableName" : "number of lines in",
    "usage" : "| number of lines in | [fileName] | ",
    "contexthelp" : "number of lines in <fileName>",
    "name" : "numberOfLinesIn",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "fileName",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "int"
  }, {
    "readableName" : "number of lines where is",
    "usage" : "| number of lines where | [column] | is | [lookupValue] | ",
    "contexthelp" : "number of lines where <column> is <lookupValue>",
    "name" : "numberOfLinesWhereIs",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "column",
      "type" : "String"
    }, {
      "name" : "lookupValue",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "int"
  }, {
    "readableName" : "number of lines where is in",
    "usage" : "| number of lines where | [column] | is | [lookupValue] | in | [filename] | ",
    "contexthelp" : "number of lines where <column> is <lookupValue> in <filename>",
    "name" : "numberOfLinesWhereIsIn",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "column",
      "type" : "String"
    }, {
      "name" : "lookupValue",
      "type" : "String"
    }, {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "int"
  }, {
    "readableName" : "set directory",
    "usage" : "| set directory | [aDirectory] | ",
    "contexthelp" : "set directory <aDirectory>",
    "name" : "setDirectory",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "aDirectory",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "get directory",
    "usage" : "| get directory |",
    "contexthelp" : "get directory",
    "name" : "getDirectory",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "create file from base 64",
    "usage" : "| create file from base | [baseName] | 64 | [base64Content] | ",
    "contexthelp" : "create file from base <baseName> 64 <base64Content>",
    "name" : "createFileFromBase64",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "baseName",
      "type" : "String"
    }, {
      "name" : "base64Content",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "create containing value",
    "usage" : "| create containing | [filename] | value | [key] | ",
    "contexthelp" : "create containing <filename> value <key>",
    "name" : "createContainingValue",
    "docString" : "Creates new file, containing value 'key'.\n@param filename name of file to create.\n@param key key whose value should be used to generate the file.\n@return file created.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "description" : "name of file to create.",
      "type" : "String"
    }, {
      "name" : "key",
      "description" : "key whose value should be used to generate the file.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "create containing",
    "usage" : "| create | [filename] | containing | [data] | ",
    "contexthelp" : "create <filename> containing <data>",
    "name" : "createContaining",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    }, {
      "name" : "data",
      "type" : "Object"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "create containing",
    "usage" : "| create | [filename] | containing | [content] | ",
    "contexthelp" : "create <filename> containing <content>",
    "name" : "createContaining",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    }, {
      "name" : "content",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "text in",
    "usage" : "| text in | [filename] | ",
    "contexthelp" : "text in <filename>",
    "name" : "textIn",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "take first line from",
    "usage" : "| take first line from | [filename] | ",
    "contexthelp" : "take first line from <filename>",
    "name" : "takeFirstLineFrom",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ "java.io.IOException" ],
    "returnType" : "String"
  }, {
    "readableName" : "convert line endings of to windows",
    "usage" : "| convert line endings of to windows | [filename] | ",
    "contexthelp" : "convert line endings of to windows <filename>",
    "name" : "convertLineEndingsOfToWindows",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ "java.io.IOException" ],
    "returnType" : "boolean"
  }, {
    "readableName" : "convert line endings of to unix",
    "usage" : "| convert line endings of to unix | [filename] | ",
    "contexthelp" : "convert line endings of to unix <filename>",
    "name" : "convertLineEndingsOfToUnix",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ "java.io.IOException" ],
    "returnType" : "boolean"
  }, {
    "readableName" : "content of",
    "usage" : "| content of | [filename] | ",
    "contexthelp" : "content of <filename>",
    "name" : "contentOf",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ "java.io.IOException" ],
    "returnType" : "String"
  }, {
    "readableName" : "create using",
    "usage" : "| create | [filename] | using | [templateName] | ",
    "contexthelp" : "create <filename> using <templateName>",
    "name" : "createUsing",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    }, {
      "name" : "templateName",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "copy to",
    "usage" : "| copy | [sourceName] | to | [targetName] | ",
    "contexthelp" : "copy <sourceName> to <targetName>",
    "name" : "copyTo",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "sourceName",
      "type" : "String"
    }, {
      "name" : "targetName",
      "type" : "String"
    } ],
    "exceptions" : [ "java.io.IOException" ],
    "returnType" : "String"
  }, {
    "readableName" : "size of",
    "usage" : "| size of | [filename] | ",
    "contexthelp" : "size of <filename>",
    "name" : "sizeOf",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "long"
  }, {
    "readableName" : "exists",
    "usage" : "| exists | [filename] | ",
    "contexthelp" : "exists <filename>",
    "name" : "exists",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "boolean"
  }, {
    "readableName" : "delete",
    "usage" : "| delete | [filename] | ",
    "contexthelp" : "delete <filename>",
    "name" : "delete",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "boolean"
  }, {
    "readableName" : "delete if exists",
    "usage" : "| delete if exists | [filename] | ",
    "contexthelp" : "delete if exists <filename>",
    "name" : "deleteIfExists",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "boolean"
  }, {
    "readableName" : "filename of",
    "usage" : "| filename of | [filename] | ",
    "contexthelp" : "filename of <filename>",
    "name" : "filenameOf",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "base name of",
    "usage" : "| base name of | [filename] | ",
    "contexthelp" : "base name of <filename>",
    "name" : "baseNameOf",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "extension of",
    "usage" : "| extension of | [filename] | ",
    "contexthelp" : "extension of <filename>",
    "name" : "extensionOf",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "poll until exists",
    "usage" : "| poll until exists | [filename] | ",
    "contexthelp" : "poll until exists <filename>",
    "name" : "pollUntilExists",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "boolean"
  }, {
    "readableName" : "poll until does not exist",
    "usage" : "| poll until does not exist | [filename] | ",
    "contexthelp" : "poll until does not exist <filename>",
    "name" : "pollUntilDoesNotExist",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "boolean"
  }, {
    "readableName" : "poll until size of exceeds",
    "usage" : "| poll until size of | [filename] | exceeds | [expectedSize] | ",
    "contexthelp" : "poll until size of <filename> exceeds <expectedSize>",
    "name" : "pollUntilSizeOfExceeds",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "filename",
      "type" : "String"
    }, {
      "name" : "expectedSize",
      "type" : "long"
    } ],
    "exceptions" : [ ],
    "returnType" : "boolean"
  }, {
    "readableName" : "append to",
    "usage" : "| append | [extraContent] | to | [filename] | ",
    "contexthelp" : "append <extraContent> to <filename>",
    "name" : "appendTo",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "extraContent",
      "type" : "String"
    }, {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "append to on new line",
    "usage" : "| append to on new | [extraContent] | line | [filename] | ",
    "contexthelp" : "append to on new <extraContent> line <filename>",
    "name" : "appendToOnNewLine",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "extraContent",
      "type" : "String"
    }, {
      "name" : "filename",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "zip as",
    "usage" : "| zip | [inputfile] | as | [zipname] | ",
    "contexthelp" : "zip <inputfile> as <zipname>",
    "name" : "zipAs",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "inputfile",
      "type" : "String"
    }, {
      "name" : "zipname",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "unzip as",
    "usage" : "| unzip | [zipname] | as | [targetDir] | ",
    "contexthelp" : "unzip <zipname> as <targetDir>",
    "name" : "unzipAs",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "zipname",
      "type" : "String"
    }, {
      "name" : "targetDir",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "number of files in zip",
    "usage" : "| number of files in zip | [zipname] | ",
    "contexthelp" : "number of files in zip <zipname>",
    "name" : "numberOfFilesInZip",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "zipname",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "long"
  }, {
    "readableName" : "names of files in zip",
    "usage" : "| names of files in zip | [zipname] | ",
    "contexthelp" : "names of files in zip <zipname>",
    "name" : "namesOfFilesInZip",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "zipname",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "ArrayList<String>"
  }, {
    "readableName" : "set int value for",
    "usage" : "| set int value | [value] | for | [name] | ",
    "contexthelp" : "set int value <value> for <name>",
    "name" : "setIntValueFor",
    "docString" : "Stores integer value.\n@param value value to be passed.\n@param name name to use this value for.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "value",
      "description" : "value to be passed.",
      "type" : "int"
    }, {
      "name" : "name",
      "description" : "name to use this value for.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "set double value for",
    "usage" : "| set double value | [value] | for | [name] | ",
    "contexthelp" : "set double value <value> for <name>",
    "name" : "setDoubleValueFor",
    "docString" : "Stores double value.\n@param value value to be passed.\n@param name name to use this value for.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "value",
      "description" : "value to be passed.",
      "type" : "double"
    }, {
      "name" : "name",
      "description" : "name to use this value for.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "set boolean value for",
    "usage" : "| set boolean value | [value] | for | [name] | ",
    "contexthelp" : "set boolean value <value> for <name>",
    "name" : "setBooleanValueFor",
    "docString" : "Stores boolean value.\n@param value value to be passed.\n@param name name to use this value for.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "value",
      "description" : "value to be passed.",
      "type" : "boolean"
    }, {
      "name" : "name",
      "description" : "name to use this value for.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "set value for",
    "usage" : "| set value | [value] | for | [name] | ",
    "contexthelp" : "set value <value> for <name>",
    "name" : "setValueFor",
    "docString" : "Stores value.\n@param value value to be stored.\n@param name name to use this value for.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "value",
      "description" : "value to be stored.",
      "type" : "Object"
    }, {
      "name" : "name",
      "description" : "name to use this value for.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "add value to",
    "usage" : "| add value | [value] | to | [name] | ",
    "contexthelp" : "add value <value> to <name>",
    "name" : "addValueTo",
    "docString" : "Adds value to (end of) a list.\n@param value value to be stored.\n@param name name of list to extend.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "value",
      "description" : "value to be stored.",
      "type" : "Object"
    }, {
      "name" : "name",
      "description" : "name of list to extend.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "copy values from",
    "usage" : "| copy values from | [map] | ",
    "contexthelp" : "copy values from <map>",
    "name" : "copyValuesFrom",
    "docString" : "Adds all values in the supplied map to the current values.\n@param map to obtain values from.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "map",
      "description" : "to obtain values from.",
      "type" : "Map<Object>"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "set values for",
    "usage" : "| set values | [values] | for | [name] | ",
    "contexthelp" : "set values <values> for <name>",
    "name" : "setValuesFor",
    "docString" : "Stores list of values in map.\n@param values comma separated list of values.\n@param name name to use this list for.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "values",
      "description" : "comma separated list of values.",
      "type" : "String"
    }, {
      "name" : "name",
      "description" : "name to use this list for.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "set content of as value for",
    "usage" : "| set content of as value | [file] | for | [key] | ",
    "contexthelp" : "set content of as value <file> for <key>",
    "name" : "setContentOfAsValueFor",
    "docString" : "@param file file's whose content should be set as byte[]\n@param key key whose value should be set.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "file",
      "description" : "file's whose content should be set as byte[]",
      "type" : "String"
    }, {
      "name" : "key",
      "description" : "key whose value should be set.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "set base 64 encoded content of as value for",
    "usage" : "| set base 64 encoded content of as value | [file] | for | [key] | ",
    "contexthelp" : "set base 64 encoded content of as value <file> for <key>",
    "name" : "setBase64EncodedContentOfAsValueFor",
    "docString" : "@param file file's whose content should be base64 encoded\n@param key key whose value should be set.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "file",
      "description" : "file's whose content should be base64 encoded",
      "type" : "String"
    }, {
      "name" : "key",
      "description" : "key whose value should be set.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "clear value",
    "usage" : "| clear value | [name] | ",
    "contexthelp" : "clear value <name>",
    "name" : "clearValue",
    "docString" : "Clears a values previously set.\n@param name value to remove.\n@return true if value was present.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "name",
      "description" : "value to remove.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "boolean"
  }, {
    "readableName" : "clear values",
    "usage" : "| clear values |",
    "contexthelp" : "clear values",
    "name" : "clearValues",
    "docString" : "Clears all values previously set.",
    "annotations" : [ ],
    "parameters" : [ ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "value",
    "usage" : "| value | [name] | ",
    "contexthelp" : "value <name>",
    "name" : "value",
    "docString" : "Retrieves value of element at a specified key.\n@param name key to get value of (nested values may be retrieved by separating the keys with '.').\n@return value stored.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "name",
      "description" : "key to get value of (nested values may be retrieved by separating the keys with '.').",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "Object"
  }, {
    "readableName" : "reset",
    "usage" : "| reset |",
    "contexthelp" : "reset",
    "name" : "reset",
    "docString" : "Called before next row is executed. (Clears all current values.)",
    "annotations" : [ ],
    "parameters" : [ ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "set",
    "usage" : "| set | key, value,  |",
    "contexthelp" : "set  key, value,",
    "name" : "set",
    "docString" : "Sets a value.\n@param key (possibly nested) key to set value for.\n@param value value to be stored.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "key",
      "description" : "(possibly nested) key to set value for.",
      "type" : "String"
    }, {
      "name" : "value",
      "description" : "value to be stored.",
      "type" : "Object"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "expand periods in names to nested maps",
    "usage" : "| expand periods in names to nested maps | [expand] | ",
    "contexthelp" : "expand periods in names to nested maps <expand>",
    "name" : "expandPeriodsInNamesToNestedMaps",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "expand",
      "type" : "boolean"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "expands periods in names to nested maps",
    "usage" : "| expands periods in names to nested maps |",
    "contexthelp" : "expands periods in names to nested maps",
    "name" : "expandsPeriodsInNamesToNestedMaps",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ ],
    "exceptions" : [ ],
    "returnType" : "boolean"
  }, {
    "readableName" : "get map helper",
    "usage" : "| get map helper |",
    "contexthelp" : "get map helper",
    "name" : "getMapHelper",
    "docString" : "@return helper to assist getting/setting (nested) values in a map.",
    "annotations" : [ ],
    "parameters" : [ ],
    "exceptions" : [ ],
    "returnType" : "MapHelper"
  }, {
    "readableName" : "set map helper",
    "usage" : "| set map helper | [mapHelper] | ",
    "contexthelp" : "set map helper <mapHelper>",
    "name" : "setMapHelper",
    "docString" : "@param mapHelper helper to assist getting/setting (nested) values in a map.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "mapHelper",
      "description" : "helper to assist getting/setting (nested) values in a map.",
      "type" : "MapHelper"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "set global value to",
    "usage" : "| set global value | [symbolName] | to | [value] | ",
    "contexthelp" : "set global value <symbolName> to <value>",
    "name" : "setGlobalValueTo",
    "docString" : "Stores a (global) value so it can be accessed by other fixtures/pages.\n@param symbolName name to store value under.\n@param value value to store.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "symbolName",
      "description" : "name to store value under.",
      "type" : "String"
    }, {
      "name" : "value",
      "description" : "value to store.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "global value",
    "usage" : "| global value | [symbolName] | ",
    "contexthelp" : "global value <symbolName>",
    "name" : "globalValue",
    "docString" : "Retrieves a (global) value, which was previously stored using #setGlobalValueTo().\n@param symbolName name value was stored under.",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "symbolName",
      "description" : "name value was stored under.",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "wait seconds",
    "usage" : "| wait seconds | [i] | ",
    "contexthelp" : "wait seconds <i>",
    "name" : "waitSeconds",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "i",
      "type" : "int"
    } ],
    "exceptions" : [ ],
    "returnType" : "boolean"
  }, {
    "readableName" : "wait milliseconds",
    "usage" : "| wait milliseconds | [i] | ",
    "contexthelp" : "wait milliseconds <i>",
    "name" : "waitMilliseconds",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "i",
      "type" : "int"
    } ],
    "exceptions" : [ ],
    "returnType" : "boolean"
  }, {
    "readableName" : "set repeat interval to milliseconds",
    "usage" : "| set repeat interval to milliseconds | [milliseconds] | ",
    "contexthelp" : "set repeat interval to milliseconds <milliseconds>",
    "name" : "setRepeatIntervalToMilliseconds",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "milliseconds",
      "type" : "int"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "repeat interval",
    "usage" : "| repeat interval |",
    "contexthelp" : "repeat interval",
    "name" : "repeatInterval",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ ],
    "exceptions" : [ ],
    "returnType" : "long"
  }, {
    "readableName" : "repeat at most times",
    "usage" : "| repeat at most times | [maxCount] | ",
    "contexthelp" : "repeat at most times <maxCount>",
    "name" : "repeatAtMostTimes",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "maxCount",
      "type" : "int"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "repeat at most times",
    "usage" : "| repeat at most times |",
    "contexthelp" : "repeat at most times",
    "name" : "repeatAtMostTimes",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ ],
    "exceptions" : [ ],
    "returnType" : "int"
  }, {
    "readableName" : "repeat count",
    "usage" : "| repeat count |",
    "contexthelp" : "repeat count",
    "name" : "repeatCount",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ ],
    "exceptions" : [ ],
    "returnType" : "int"
  }, {
    "readableName" : "time spent repeating",
    "usage" : "| time spent repeating |",
    "contexthelp" : "time spent repeating",
    "name" : "timeSpentRepeating",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ ],
    "exceptions" : [ ],
    "returnType" : "long"
  } ],
  "typeName" : "nl.praegus.fitnesse.slim.fixtures.CsvFileFixture",
  "name" : "CsvFileFixture",
  "annotations" : [ ]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy