net.sf.saxon.option.local.Numberer_it Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Saxon-HE Show documentation
Show all versions of Saxon-HE Show documentation
The XSLT and XQuery Processor
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2018-2022 Saxonica Limited
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.option.local;
import net.sf.saxon.expr.number.AbstractNumberer;
/**
* Localization class for Italian
*
* @author Karel Goossens
* BTR-Services Belgium.
* Numberer class for the Italian language.
* @see Italian numbers
* @see Italian months
* @see Italian days
*/
public class Numberer_it extends AbstractNumberer {
private static final long serialVersionUID = 1L;
private static final String[] italianOrdinalUnits = {
"", "primo", "secondo", "terzo", "quarto", "quinto", "sesto", "settimo", "ottavo", "nono",
"decimo", "undicesimo ", "dodicesimo", "tredicesimo", "quattordicesimo", "quindiczesimo", "sedicesimo",
"diciassettesimo", "diciottesimo", "novantesimo"};
private static final String[] italianOrdinalTens = {
"", "decimo", "ventesimo", "trentesimo", "quarantesimo", "cinquantesimo",
"sessantesimo", "settantesimo", "ottantesimo", "novantesimo"};
private static final String[] italianUnits = {
"", "uno", "due", "tre", "quattro", "cinque", "sei", "sette", "otto", "nove",
"dieci", "undici", "dodici", "tredici", "quattordici", "quindici", "sedici",
"diciassette", "diciotto", "diciannove"};
private static final String[] italianTens = {
"", "dieci", "venti", "trenta", "quaranta", "cinquanta",
"sessanta", "settanta", "ottanta", "novanta"};
/**
* Show an ordinal number as Italian words in a requested case (for example, Twentyfirst)
*/
@Override
public String toOrdinalWords(String ordinalParam, long number, int wordCase) {
String s;
/* there is no such thing as zero-est */
if (number == 0 && !"notNull".equalsIgnoreCase(ordinalParam)) return "";
ordinalParam = "notNull";
if (number >= 1000000000) {
long rem = number % 1000000000;
long num = number / 1000000000;
s = (num == 1 ? "un" : toWords(num)) +
(rem == 0 ? " miliardesimo" : (num == 1 ? " miliardo " : " miliardi ") + toOrdinalWords(ordinalParam, rem, wordCase));
} else if (number >= 1000000) {
long rem = number % 1000000;
long num = number / 1000000;
s = (num == 1 ? "un" : toWords(num)) +
(rem == 0 ? " milionesimo" : (num == 1 ? " milione " : " milioni ") + toOrdinalWords(ordinalParam, rem, wordCase));
} else if (number >= 1000) {
if (number == 100000) {
s = "centomillesimo";
} else if (number == 10000) {
s = "diecimillesimo";
} else {
long rem = number % 1000;
long num = number / 1000;
s = (num == 1 ? "" : toWords(num)) +
(rem == 0 ? "millesimo" : (num == 1 ? "mille" : "mila") + toOrdinalWords(ordinalParam, rem, wordCase));
}
} else if (number >= 100) {
int rem = (int) number % 100;
int num = (int) number / 100;
if (number == 100) {
s = "centesimo";
} else {
if (rem == 0 && num != 1) {
s = toWords(num) + "centesimo";
} else {
s = (num == 1 ? "" : toWords(num)) + "cento" + toOrdinalWords(ordinalParam, rem, wordCase);
}
}
} else {
if (number < 20) {
s = italianOrdinalUnits[(int) number];
} else {
int rem = (int) (number % 10);
if (rem == 0) {
s = italianOrdinalTens[(int) number / 10];
} else {
s = italianTens[(int) number / 10];
switch (rem) {
case 1:
s = s.substring(0, s.length() - 1) + "unesimo";
break;
case 3:
case 6:
s = s + italianUnits[rem] + "esimo";
break;
default:
s = s + italianUnits[rem].substring(0, italianUnits[rem].length() - 1) + "esimo";
break;
}
}
}
}
s = s.toLowerCase();
s = s.replaceAll("centoun", "centun");
if (wordCase == UPPER_CASE) {
s = s.toUpperCase();
}
return s;
}
@Override
public String toWords(long number) {
if (number >= 1000000000) {
long rem = number % 1000000000;
long num = number / 1000000000;
return (num == 1 ? "un miliardo" : toWords(num) + " miliardi") +
(rem == 0 ? "" : " ") + toWords(rem);
} else if (number >= 1000000) {
long rem = number % 1000000;
long num = number / 1000000;
return (num == 1 ? "un milione" : toWords(num) + " milioni") +
(rem == 0 ? "" : " ") + toWords(rem);
} else if (number >= 1000) {
long rem = number % 1000;
long num = number / 1000;
return (num == 1 ? "mille" : toWords(num) + "mila") + toWords(rem);
} else if (number >= 100) {
long rem = number % 100;
return (number / 100 == 1 ? "" : toWords(number / 100)) + "cento" + toWords(rem);
} else {
if (number < 20) {
return italianUnits[(int) number];
}
int rem = (int) (number % 10);
String s = italianTens[(int) number / 10];
switch (rem) {
case 0:
return italianTens[(int) number / 10];
case 1:
case 8:
return s.substring(0, s.length() - 1) + italianUnits[rem];
case 3:
return s + "tr\u00e9";
default:
return s + italianUnits[rem];
}
}
}
@Override
public String toWords(long number, int wordCase) {
String s;
if (number == 0) {
s = "zero";
} else {
s = toWords(number);
}
if (wordCase == UPPER_CASE) {
return s.toUpperCase();
} else if (wordCase == LOWER_CASE) {
return s.toLowerCase();
} else {
return s;
}
}
private static final String[] italianMonths = {
"gennaio", "febbraio", "marzo", "aprile", "maggio", "giugno",
"luglio", "agosto", "settembre", "ottobre", "novembre", "dicembre"
};
private static final String[] italianMonthAbbreviations = {
"gen", "feb", "mar", "apr", "mag", "giu",
"lug", "ago", "set", "ott", "nov", "dic"
};
/**
* Get a month name or abbreviation
*
* @param month The month number (1=January, 12=December)
* @param minWidth The minimum number of characters
* @param maxWidth The maximum number of characters
*/
//@Override
@Override
public String monthName(int month, int minWidth, int maxWidth) {
String name = italianMonths[month - 1];
if (maxWidth < 3) {
maxWidth = 3;
}
if (name.length() > maxWidth) {
name = italianMonthAbbreviations[month - 1];
if (name.length() > maxWidth) {
name = name.substring(0, maxWidth);
}
}
while (name.length() < minWidth) {
name = name + ' ';
}
return name;
}
/**
* Get a day name or abbreviation
*
* @param day The day of the week (1=Monday, 7=Sunday)
* @param minWidth The minimum number of characters
* @param maxWidth The maximum number of characters
*/
@Override
public String dayName(int day, int minWidth, int maxWidth) {
String name = italianDays[day - 1];
if (maxWidth < 2) {
maxWidth = 2;
}
if (name.length() > maxWidth) {
name = italianDayAbbreviations[day - 1];
if (name.length() > maxWidth) {
name = name.substring(0, maxWidth);
}
}
while (name.length() < minWidth) {
name = name + ' ';
}
if (minWidth == 1 && maxWidth == 2) {
// special case
name = name.substring(0, minUniqueDayLength[day - 1]);
}
return name;
}
private static final String[] italianDays = {
"luned\u00ec", "marted\u00ec ", "mercoled\u00ec", "gioved\u00ec", "venerd\u00ec", "sabato", "domenica"
};
private static final String[] italianDayAbbreviations = {
"lun", "mar", "mer", "gio", "ven", "sab", "dom"
};
/*@NotNull*/ private static final int[] minUniqueDayLength = {
1, 2, 2, 1, 1, 1, 1
};
}