- java.lang.Object
-
- com.itextpdf.text.factories.GreekAlphabetFactory
-
public class GreekAlphabetFactory extends java.lang.ObjectThis class can produce String combinations representing a number built with Greek letters (from alpha to omega, then alpha alpha, alpha beta, alpha gamma). We are aware of the fact that the original Greek numbering is different; See http://www.cogsci.indiana.edu/farg/harry/lan/grknum.htm#ancient but this isn't implemented yet; the main reason being the fact that we need a font that has the obsolete Greek characters qoppa and sampi.- Since:
- 2.0.7 (was called GreekNumberFactory in earlier versions)
-
-
Constructor Summary
Constructors Constructor Description GreekAlphabetFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringgetLowerCaseString(int index)Changes an int into a lower case Greek letter combination.static java.lang.StringgetString(int index)Changes an int into a lower case Greek letter combination.static java.lang.StringgetString(int index, boolean lowercase)Changes an int into a Greek letter combination.static java.lang.StringgetUpperCaseString(int index)Changes an int into a upper case Greek letter combination.static voidmain(java.lang.String[] args)Test this class using this main method.
-
-
-
Method Detail
-
getString
public static final java.lang.String getString(int index)
Changes an int into a lower case Greek letter combination.- Parameters:
index- the original number- Returns:
- the letter combination
-
getLowerCaseString
public static final java.lang.String getLowerCaseString(int index)
Changes an int into a lower case Greek letter combination.- Parameters:
index- the original number- Returns:
- the letter combination
-
getUpperCaseString
public static final java.lang.String getUpperCaseString(int index)
Changes an int into a upper case Greek letter combination.- Parameters:
index- the original number- Returns:
- the letter combination
-
getString
public static final java.lang.String getString(int index, boolean lowercase)Changes an int into a Greek letter combination.- Parameters:
index- the original number- Returns:
- the letter combination
-
main
public static void main(java.lang.String[] args)
Test this class using this main method.
-
-