public class ASN1ObjectIdentifier extends ASN1Primitive
| Constructor and Description |
|---|
ASN1ObjectIdentifier(String identifier)
Create an OID based on the passed in String.
|
| Modifier and Type | Method and Description |
|---|---|
ASN1ObjectIdentifier |
branch(String branchID)
Return an OID that creates a branch under the current one.
|
protected byte[] |
getBody() |
String |
getId()
Return the OID as a string.
|
static ASN1ObjectIdentifier |
getInstance(ASN1TaggedObject obj,
boolean explicit)
return an Object Identifier from a tagged object.
|
static ASN1ObjectIdentifier |
getInstance(Object obj)
return an OID from the passed in object
|
int |
hashCode()
Returns an integer hash code for this object.
|
boolean |
on(ASN1ObjectIdentifier stem)
Return true if this oid is an extension of the passed in branch, stem.
|
String |
toString()
Returns a string containing a concise, human-readable description of this
object.
|
equals, fromByteArray, toASN1PrimitivegetEncoded, getEncoded, hasEncodedTagValue, toASN1Objectpublic ASN1ObjectIdentifier(String identifier)
identifier - a string representation of an OID.public static ASN1ObjectIdentifier getInstance(Object obj)
obj - an ASN1ObjectIdentifier or an object that can be converted into one.IllegalArgumentException - if the object cannot be converted.public static ASN1ObjectIdentifier getInstance(ASN1TaggedObject obj, boolean explicit)
obj - the tagged object holding the object we wantexplicit - true if the object is meant to be explicitly
tagged false otherwise.IllegalArgumentException - if the tagged object cannot
be converted.public String getId()
public ASN1ObjectIdentifier branch(String branchID)
branchID - node numbers for the new branch.public boolean on(ASN1ObjectIdentifier stem)
stem - the arc or branch that is a possible parent.protected byte[] getBody()
public int hashCode()
ObjectObject.equals(java.lang.Object) returns true must return
the same hash code value. This means that subclasses of Object
usually override both methods or neither method.
Note that hash values must not change over time unless information used in equals comparisons also changes.
See Writing a correct
hashCode method
if you intend implementing your own hashCode method.
hashCode in class ASN1PrimitiveObject.equals(java.lang.Object)public String toString()
ObjectgetClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toString method
if you intend implementing your own toString method.