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

META-INF.apidocs.nl.hsac.fitnesse.fixture.slim.DateTimeCalculatorFixture.json Maven / Gradle / Ivy

{
  "constructors" : [ {
    "readableName" : "date time calculator fixture",
    "usage" : "| date time calculator fixture | [dateFormat] |",
    "name" : "DateTimeCalculatorFixture",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "dateFormat",
      "type" : "String"
    } ],
    "exceptions" : [ ]
  } ],
  "qualifiedName" : "nl.hsac.fitnesse.fixture.slim.DateTimeCalculatorFixture",
  "publicMethods" : [ {
    "readableName" : "set date format",
    "usage" : "| set date format | [df] | ",
    "contexthelp" : "set date format <df>",
    "name" : "setDateFormat",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "df",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "void"
  }, {
    "readableName" : "add years to",
    "usage" : "| add years | [years] | to | [formattedDate] | ",
    "contexthelp" : "add years <years> to <formattedDate>",
    "name" : "addYearsTo",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "years",
      "type" : "int"
    }, {
      "name" : "formattedDate",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "add months to",
    "usage" : "| add months | [months] | to | [formattedDate] | ",
    "contexthelp" : "add months <months> to <formattedDate>",
    "name" : "addMonthsTo",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "months",
      "type" : "int"
    }, {
      "name" : "formattedDate",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "add days to",
    "usage" : "| add days | [days] | to | [formattedDate] | ",
    "contexthelp" : "add days <days> to <formattedDate>",
    "name" : "addDaysTo",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "days",
      "type" : "int"
    }, {
      "name" : "formattedDate",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "add hours to",
    "usage" : "| add hours | [hours] | to | [formattedDate] | ",
    "contexthelp" : "add hours <hours> to <formattedDate>",
    "name" : "addHoursTo",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "hours",
      "type" : "int"
    }, {
      "name" : "formattedDate",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "add minutes to",
    "usage" : "| add minutes | [minutes] | to | [formattedDate] | ",
    "contexthelp" : "add minutes <minutes> to <formattedDate>",
    "name" : "addMinutesTo",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "minutes",
      "type" : "int"
    }, {
      "name" : "formattedDate",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "readableName" : "add seconds to",
    "usage" : "| add seconds | [seconds] | to | [formattedDate] | ",
    "contexthelp" : "add seconds <seconds> to <formattedDate>",
    "name" : "addSecondsTo",
    "docString" : "",
    "annotations" : [ ],
    "parameters" : [ {
      "name" : "seconds",
      "type" : "int"
    }, {
      "name" : "formattedDate",
      "type" : "String"
    } ],
    "exceptions" : [ ],
    "returnType" : "String"
  }, {
    "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.hsac.fitnesse.fixture.slim.DateTimeCalculatorFixture",
  "name" : "DateTimeCalculatorFixture",
  "annotations" : [ ]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy