de.jostnet.ZahlAlsWort.Tausender Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zahlalswort Show documentation
Show all versions of zahlalswort Show documentation
ZahlAlsWort - Library to convert Numbers to Words
package de.jostnet.ZahlAlsWort;
/**********************************************************************
* Copyright (c) by Heiner Jostkleigrewe
*
* [email protected]
**********************************************************************/
class Tausender
{
static String get(Zahl zahl)
{
String tausender = "";
if (zahl.getTausenderStelle() == 1)
{
tausender = "ein";
}
else
{
tausender = ZahlAlsWort.get(new Zahl(zahl.getTausenderStellen()));
}
tausender += "tausend";
tausender += Hunderter.get(zahl);
return tausender;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy