Revision 44032

View differences:

trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.expressionevaluator/org.gvsig.expressionevaluator.lib/org.gvsig.expressionevaluator.lib.impl/src/main/resources/org/gvsig/expressionevaluator/functions/en/CONCAT.json
1
{
2
    "name": "CONCAT",
3
    "group": "String",
4
    "template": "CONCAT({{string1}}, string2)",
5
    "description": [
6
      "Combines strings.",
7
      "NULL parameters are ignored, and do not cause the result to become NULL",
8
      "This method returns a string.\n",
9
      "Example:\n",
10
      "CONCAT(NAME, '!')"
11
    ],
12
    "returnType": "String"
13
}
trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.expressionevaluator/org.gvsig.expressionevaluator.lib/org.gvsig.expressionevaluator.lib.impl/src/main/resources/org/gvsig/expressionevaluator/functions/en/CHAR.json
1
{
2
    "name": "CHAR",
3
    "group": "String",
4
    "template": "CHAR({{int}})",
5
    "args": [
6
        "value whose character is to be returned"
7
    ],
8
    "description": [
9
      "Returns the character that represents the ASCII value.",
10
      "This method returns a string.\n",
11
      "Example:\n",
12
      "CHAR(65)"
13
    ],
14
    "alias": [
15
      "CHR"
16
    ],
17
    "returnType": "String"
18
}
trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.expressionevaluator/org.gvsig.expressionevaluator.lib/org.gvsig.expressionevaluator.lib.impl/src/main/resources/org/gvsig/expressionevaluator/functions/en/DECODE.json
1
{
2
    "name": "DECODE",
3
    "group": "String",
4
    "template": "DECODE({{data}}, 'hex')",
5
    "description": [
6
      "Decode binary data from textual representation in string.\n",
7
      "Supported formats are: base64, hex.\n"
8
    ],
9
    "args": [
10
          "data - A string value with the data to be converted",
11
          "format - A string value indicating the format of the input data. The default value is 'hex'."
12
    ],    
13
    "returnType": "Byte array"
14
}
trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.expressionevaluator/org.gvsig.expressionevaluator.lib/org.gvsig.expressionevaluator.lib.impl/src/main/resources/org/gvsig/expressionevaluator/functions/en/ASCII.json
1
{
2
    "name": "ASCII",
3
    "group": "String",
4
    "template": "ASCII({{string}})",
5
    "args": [
6
        "value whose first ascii character is to be returned"
7
    ],
8
    "description": [
9
      "Returns the ASCII value of the first character in the string.",
10
      "This method returns an int.\n",
11
      "Example:\n",
12
      "ASCII('Hi')"
13
    ],
14
    "returnType": "Integer"
15
}
trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.expressionevaluator/org.gvsig.expressionevaluator.lib/org.gvsig.expressionevaluator.lib.impl/src/main/resources/org/gvsig/expressionevaluator/functions/en/INSTR.json
1
{
2
    "name": "INSTR",
3
    "group": "String",
4
    "template": "INSTR({{string}}, searchString, startInt)",
5
    "description": [
6
      "Returns the location of a search string in a string.",
7
      "If a start position is used, the characters before it are ignored.",
8
      "If position is negative, the rightmost location is returned.",
9
      "0 is returned if the search string is not found.",
10
      "Please note this function is case sensitive, even if the parameters are not.\n",
11
      "Example:\n",
12
      "INSTR(EMAIL,'@')"
13
    ],
14
    "args": [
15
          "string",
16
          "searchString"
17
          "startInt - Optional. Start position to be used for search"
18
    ],    
19
    "returnType": "Integer"
20
}

Also available in: Unified diff