Uses of Class
com.neovisionaries.i18n.CurrencyCode
-
-
Uses of CurrencyCode in com.neovisionaries.i18n
Fields in com.neovisionaries.i18n with type parameters of type CurrencyCode Modifier and Type Field Description private static java.util.Map<java.lang.Integer,CurrencyCode>
CurrencyCode. numericMap
Methods in com.neovisionaries.i18n that return CurrencyCode Modifier and Type Method Description static CurrencyCode
CurrencyCode. getByCode(int code)
Get aCurrencyCode
that corresponds to the given ISO 4217 numeric code.static CurrencyCode
CurrencyCode. getByCode(java.lang.String code)
Get aCurrencyCode
that corresponds to the given ISO 4217 alpha-3 code.static CurrencyCode
CurrencyCode. getByCode(java.lang.String code, boolean caseSensitive)
Get aCurrencyCode
that corresponds to the given ISO 4217 alpha-3 code.static CurrencyCode
CurrencyCode. getByCodeIgnoreCase(java.lang.String code)
Get aCurrencyCode
that corresponds to the given ISO 4217 alpha-3 code.static CurrencyCode
CurrencyCode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CurrencyCode[]
CurrencyCode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.neovisionaries.i18n that return types with arguments of type CurrencyCode Modifier and Type Method Description static java.util.List<CurrencyCode>
CurrencyCode. findByName(java.lang.String regex)
Get a list ofCurrencyCode
by a name regular expression.static java.util.List<CurrencyCode>
CurrencyCode. findByName(java.util.regex.Pattern pattern)
Get a list ofCurrencyCode
by a name pattern.static java.util.List<CurrencyCode>
CurrencyCode. getByCountry(CountryCode country)
Get a list ofCurrencyCode
instances whose country list contains the specified country.static java.util.List<CurrencyCode>
CurrencyCode. getByCountry(java.lang.String country)
Get a list ofCurrencyCode
instances whose country list contains the specified country.static java.util.List<CurrencyCode>
CurrencyCode. getByCountry(java.lang.String country, boolean caseSensitive)
Get a list ofCurrencyCode
instances whose country list contains the specified country.static java.util.List<CurrencyCode>
CurrencyCode. getByCountryIgnoreCase(java.lang.String country)
Get a list ofCurrencyCode
instances whose country list contains the specified country.
-