Class ASN1DumpBC
- java.lang.Object
-
- com.itextpdf.bouncycastle.asn1.util.ASN1DumpBC
-
-
Field Summary
Fields Modifier and Type Field Description private org.bouncycastle.asn1.util.ASN1Dumpasn1Dumpprivate static ASN1DumpBCINSTANCE
-
Constructor Summary
Constructors Constructor Description ASN1DumpBC(org.bouncycastle.asn1.util.ASN1Dump asn1Dump)Creates new wrapper instance forASN1Dump.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringdumpAsString(java.lang.Object obj)Calls actualdumpAsStringmethod for the wrapped ASN1Dump object.java.lang.StringdumpAsString(java.lang.Object obj, boolean b)Calls actualdumpAsStringmethod for the wrapped ASN1Dump object.booleanequals(java.lang.Object o)Indicates whether some other object is "equal to" this one.org.bouncycastle.asn1.util.ASN1DumpgetAsn1Dump()Gets actual org.bouncycastle object being wrapped.static ASN1DumpBCgetInstance()Gets wrapper instance.inthashCode()Returns a hash code value based on the wrapped object.java.lang.StringtoString()DelegatestoStringmethod call to the wrapped object.
-
-
-
Field Detail
-
INSTANCE
private static final ASN1DumpBC INSTANCE
-
asn1Dump
private final org.bouncycastle.asn1.util.ASN1Dump asn1Dump
-
-
Method Detail
-
getInstance
public static ASN1DumpBC getInstance()
Gets wrapper instance.- Returns:
ASN1DumpBCinstance.
-
getAsn1Dump
public org.bouncycastle.asn1.util.ASN1Dump getAsn1Dump()
Gets actual org.bouncycastle object being wrapped.- Returns:
- wrapped
ASN1Dump.
-
dumpAsString
public java.lang.String dumpAsString(java.lang.Object obj, boolean b)Calls actualdumpAsStringmethod for the wrapped ASN1Dump object.- Specified by:
dumpAsStringin interfaceIASN1Dump- Parameters:
obj- the ASN1Primitive (or its wrapper) to be dumped outb- if true, dump out the contents of octet and bit strings- Returns:
- the resulting string.
-
dumpAsString
public java.lang.String dumpAsString(java.lang.Object obj)
Calls actualdumpAsStringmethod for the wrapped ASN1Dump object.- Specified by:
dumpAsStringin interfaceIASN1Dump- Parameters:
obj- the ASN1Primitive (or its wrapper) to be dumped out- Returns:
- the resulting string.
-
equals
public boolean equals(java.lang.Object o)
Indicates whether some other object is "equal to" this one. Compares wrapped objects.- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
Returns a hash code value based on the wrapped object.- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
DelegatestoStringmethod call to the wrapped object.- Overrides:
toStringin classjava.lang.Object
-
-