Class Roman
java.lang.Object
org.apache.poi.ss.formula.functions.Fixed2ArgFunction
org.apache.poi.ss.formula.functions.Roman
- All Implemented Interfaces:
Function,Function2Arg
Implementation for Excel Roman() function.
Syntax:
Roman (number,form)
Converts an arabic numeral to roman, as text.
Number Required. The Arabic numeral you want converted.
Form Optional. A number specifying the type of roman numeral you want. The roman numeral style ranges from Classic to Simplified, becoming more concise as the value of form increases.
Return_type a roman numeral, as text
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionmakeConcise(String input, int form) Use conversion rule to factor some parts and make them more conciseMethods inherited from class org.apache.poi.ss.formula.functions.Fixed2ArgFunction
evaluate
-
Constructor Details
-
Roman
public Roman()
-
-
Method Details
-
evaluate
public ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval numberVE, ValueEval formVE) Description copied from interface:Function2Arg -
makeConcise
Use conversion rule to factor some parts and make them more concise- Parameters:
input- the input stringform- the level of conciseness [0..4] with 4 being most concise and simplified
-