📄 monetaryvalue.java
字号:
package org.bouncycastle.asn1.x509.qualified;import java.math.BigInteger;import java.util.Enumeration;import org.bouncycastle.asn1.ASN1Encodable;import org.bouncycastle.asn1.ASN1Sequence;import org.bouncycastle.asn1.ASN1EncodableVector;import org.bouncycastle.asn1.DERInteger;import org.bouncycastle.asn1.DERObject;import org.bouncycastle.asn1.DERSequence;/** * The MonetaryValue object. * <pre> * MonetaryValue ::= SEQUENCE { * currency Iso4217CurrencyCode, * amount INTEGER, * exponent INTEGER } * -- value = amount * 10^exponent * </pre> */public class MonetaryValue extends ASN1Encodable{ Iso4217CurrencyCode currency; DERInteger amount; DERInteger exponent; public static MonetaryValue getInstance( Object obj) { if (obj == null || obj instanceof MonetaryValue) { return (MonetaryValue)obj; } if (obj instanceof ASN1Sequence) { return new MonetaryValue(ASN1Sequence.getInstance(obj)); } throw new IllegalArgumentException("unknown object in getInstance"); } public MonetaryValue( ASN1Sequence seq) { Enumeration e = seq.getObjects(); // currency currency = Iso4217CurrencyCode.getInstance(e.nextElement()); // hashAlgorithm amount = DERInteger.getInstance(e.nextElement()); // exponent exponent = DERInteger.getInstance(e.nextElement()); } public MonetaryValue( Iso4217CurrencyCode currency, int amount, int exponent) { this.currency = currency; this.amount = new DERInteger(amount); this.exponent = new DERInteger(exponent); } public Iso4217CurrencyCode getCurrency() { return currency; } public BigInteger getAmount() { return amount.getValue(); } public BigInteger getExponent() { return exponent.getValue(); } public DERObject toASN1Object() { ASN1EncodableVector seq = new ASN1EncodableVector(); seq.add(currency); seq.add(amount); seq.add(exponent); return new DERSequence(seq); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -