org.bouncycastle.asn1.isismtt.x509
public class MonetaryLimit extends ASN1Encodable
MonetaryLimitSyntax ::= SEQUENCE
{
currency PrintableString (SIZE(3)),
amount INTEGER,
exponent INTEGER
}
currency must be the ISO code.
value = amount???10*exponentBER, DER| Constructor and Description |
|---|
MonetaryLimit(java.lang.String currency,
int amount,
int exponent)
Constructor from a given details.
|
| Modifier and Type | Method and Description |
|---|---|
java.math.BigInteger |
getAmount() |
java.lang.String |
getCurrency() |
java.math.BigInteger |
getExponent() |
static MonetaryLimit |
getInstance(java.lang.Object obj) |
DERObject |
toASN1Object()
Produce an object suitable for an ASN1OutputStream.
|
equals, getDEREncoded, getDERObject, getEncoded, getEncoded, hashCodepublic MonetaryLimit(java.lang.String currency,
int amount,
int exponent)
currency - The currency. Must be the ISO code.amount - The amountexponent - The exponentpublic static MonetaryLimit getInstance(java.lang.Object obj)
public java.lang.String getCurrency()
public java.math.BigInteger getAmount()
public java.math.BigInteger getExponent()
public DERObject toASN1Object()
MonetaryLimitSyntax ::= SEQUENCE
{
currency PrintableString (SIZE(3)),
amount INTEGER,
exponent INTEGER
}
toASN1Object in class ASN1Encodable