org.bouncycastle.asn1.x509.qualified
public class MonetaryValue extends ASN1Encodable
MonetaryValue ::= SEQUENCE {
currency Iso4217CurrencyCode,
amount INTEGER,
exponent INTEGER }
-- value = amount * 10^exponent
| Constructor Summary | |
|---|---|
| MonetaryValue(ASN1Sequence seq) | |
| MonetaryValue(Iso4217CurrencyCode currency, int amount, int exponent) | |
| Method Summary | |
|---|---|
| BigInteger | getAmount() |
| Iso4217CurrencyCode | getCurrency() |
| BigInteger | getExponent() |
| static MonetaryValue | getInstance(Object obj) |
| DERObject | toASN1Object() |