org.mozilla.jss.asn1
Class BOOLEAN
java.lang.Object
|
+--org.mozilla.jss.asn1.BOOLEAN
- All Implemented Interfaces:
- ASN1Value
- public class BOOLEAN
- extends java.lang.Object
- implements ASN1Value
An ASN.1 BOOLEAN
value.
Inner Class Summary |
static class |
BOOLEAN.Template
A Class for decoding BOOLEAN values from their BER
encodings. |
Constructor Summary |
private |
BOOLEAN()
|
|
BOOLEAN(boolean val)
Creates a BOOLEAN with the given value. |
Method Summary |
void |
encode(java.io.OutputStream ostream)
Write this value's DER encoding to an output stream using
its own base tag. |
void |
encode(Tag implicitTag,
java.io.OutputStream ostream)
Write this value's DER encoding to an output stream using
an implicit tag. |
private ASN1Header |
getHeader()
|
private ASN1Header |
getHeader(Tag implicitTag)
|
Tag |
getTag()
Returns the base tag for this type, not counting any tags
that may be imposed on it by its context. |
static BOOLEAN.Template |
getTemplate()
|
boolean |
toBoolean()
Returns the boolean value of this BOOLEAN . |
java.lang.String |
toString()
Returns "true" or "false". |
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait |
TAG
public static final Tag TAG
FORM
public static final Form FORM
val
private boolean val
templateInstance
private static final BOOLEAN.Template templateInstance
BOOLEAN
private BOOLEAN()
BOOLEAN
public BOOLEAN(boolean val)
- Creates a
BOOLEAN
with the given value.
getTag
public Tag getTag()
- Description copied from interface:
ASN1Value
- Returns the base tag for this type, not counting any tags
that may be imposed on it by its context.
- Specified by:
getTag
in interface ASN1Value
getHeader
private ASN1Header getHeader()
getHeader
private ASN1Header getHeader(Tag implicitTag)
encode
public void encode(java.io.OutputStream ostream)
throws java.io.IOException
- Description copied from interface:
ASN1Value
- Write this value's DER encoding to an output stream using
its own base tag.
- Specified by:
encode
in interface ASN1Value
encode
public void encode(Tag implicitTag,
java.io.OutputStream ostream)
throws java.io.IOException
- Description copied from interface:
ASN1Value
- Write this value's DER encoding to an output stream using
an implicit tag.
- Specified by:
encode
in interface ASN1Value
toBoolean
public boolean toBoolean()
- Returns the boolean value of this
BOOLEAN
.
toString
public java.lang.String toString()
- Returns "true" or "false".
- Overrides:
toString
in class java.lang.Object
getTemplate
public static BOOLEAN.Template getTemplate()