|
Bouncy Castle Cryptography Library 1.81 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.bouncycastle.asn1.ASN1Object
org.bouncycastle.asn1.ASN1Primitive
org.bouncycastle.asn1.ASN1Boolean
Public facade of ASN.1 Boolean data.
Use following to place a new instance of ASN.1 Boolean in your data:
ASN1Boolean.TRUE literal
ASN1Boolean.FALSE literal
ASN1Boolean.getInstance(boolean)
ASN1Boolean.getInstance(int)
Field Summary | |
static ASN1Boolean |
FALSE
|
static ASN1Boolean |
TRUE
|
Method Summary | |
static ASN1Boolean |
getInstance(ASN1TaggedObject taggedObject,
boolean explicit)
Return a Boolean from a tagged object. |
static ASN1Boolean |
getInstance(boolean value)
Return an ASN1Boolean from the passed in boolean. |
static ASN1Boolean |
getInstance(int value)
Return an ASN1Boolean from the passed in value. |
static ASN1Boolean |
getInstance(java.lang.Object obj)
Return a boolean from the passed in object. |
int |
hashCode()
|
boolean |
isTrue()
|
java.lang.String |
toString()
|
Methods inherited from class org.bouncycastle.asn1.ASN1Primitive |
encodeTo, encodeTo, equals, equals, equals, fromByteArray, toASN1Primitive |
Methods inherited from class org.bouncycastle.asn1.ASN1Object |
getEncoded, getEncoded, hasEncodedTagValue |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final ASN1Boolean FALSE
public static final ASN1Boolean TRUE
Method Detail |
public static ASN1Boolean getInstance(java.lang.Object obj)
obj
- an ASN1Boolean or an object that can be converted into one.
java.lang.IllegalArgumentException
- if the object cannot be converted.public static ASN1Boolean getInstance(boolean value)
value
- true or false depending on the ASN1Boolean wanted.
public static ASN1Boolean getInstance(int value)
value
- non-zero (true) or zero (false) depending on the ASN1Boolean wanted.
public static ASN1Boolean getInstance(ASN1TaggedObject taggedObject, boolean explicit)
taggedObject
- the tagged object holding the object we wantexplicit
- true if the object is meant to be explicitly
tagged false otherwise.
java.lang.IllegalArgumentException
- if the tagged object cannot
be converted.public boolean isTrue()
public int hashCode()
hashCode
in class ASN1Primitive
public java.lang.String toString()
|
Bouncy Castle Cryptography Library 1.81 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |