public class FunctionDescription extends Object
    
   Text 
   & 
   Concatenate two strings. 
   Text Left & Text Right 
   Text 
   None 
   Concatenates two text (string) values. Due to the way conversion works, numbers are converted to
   strings. Note that this is equivalent to CONCATENATE(Left,Right).
   (Note: CONCATENATE is not yet available in libformula version 0.1.18.2) 
   
   "Hi " & "there"  "Hi there" 
     1  Simple concatenation.  
  "H" & ""  "H" 
    1  Concatenating an empty string produces no change.  
  -5&"b"  -5b 
    1  Unary - has higher precedence than &  
  3&2-1  31 
    1  Binary - has higher precedence than &  
    
    
 | Constructor and Description | 
|---|
FunctionDescription(Node node)  | 
FunctionDescription(String category,
                   String name,
                   String description,
                   String syntax,
                   String returns,
                   String constraints,
                   String semantics,
                   List<FunctionExample> functionExamples)  | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
getCategory()  | 
String | 
getConstraints()  | 
String | 
getDescription()  | 
List<FunctionExample> | 
getFunctionExamples()  | 
String | 
getHtmlReport()
Create a text version of a report on this function 
 | 
String | 
getName()  | 
String | 
getReturns()  | 
String | 
getSemantics()  | 
String | 
getSyntax()  | 
void | 
setCategory(String category)  | 
void | 
setConstraints(String constraints)  | 
void | 
setDescription(String description)  | 
void | 
setFunctionExamples(List<FunctionExample> functionExamples)  | 
void | 
setName(String name)  | 
void | 
setReturns(String returns)  | 
void | 
setSemantics(String semantics)  | 
void | 
setSyntax(String syntax)  | 
public static final String XML_TAG
public FunctionDescription(String category, String name, String description, String syntax, String returns, String constraints, String semantics, List<FunctionExample> functionExamples)
category - name - description - syntax - returns - constraints - semantics - functionExamples - public FunctionDescription(Node node)
public String getCategory()
public void setCategory(String category)
category - the category to setpublic String getName()
public void setName(String name)
name - the name to setpublic String getDescription()
public void setDescription(String description)
description - the description to setpublic String getSyntax()
public void setSyntax(String syntax)
syntax - the syntax to setpublic String getReturns()
public void setReturns(String returns)
returns - the returns to setpublic String getConstraints()
public void setConstraints(String constraints)
constraints - the constraints to setpublic String getSemantics()
public void setSemantics(String semantics)
semantics - the semantics to setpublic List<FunctionExample> getFunctionExamples()
public void setFunctionExamples(List<FunctionExample> functionExamples)
functionExamples - the functionExamples to setpublic String getHtmlReport()