Package org.apache.harmony.security.asn1
Class ObjectIdentifier
java.lang.Object
org.apache.harmony.security.asn1.ObjectIdentifier
public final class ObjectIdentifier extends Object
Instance of this class represents ObjectIdentifier (OID).
According to X.690:
OID is represented as a sequence of subidentifier.
Each subidentifier is represented as non negative integer value.
There are at least 2 subidentifiers in the sequence.
Valid values for first subidentifier are 0, 1 and 2.
If the first subidentifier has 0 or 1 value the second
subidentifier must be less then 40.
- See Also:
- ASN.1
-
Constructor Summary
Constructors Constructor Description ObjectIdentifier(int[] oid)Creates ObjectIdentifier(OID) from array of integers.ObjectIdentifier(String strOid)Creates ObjectIdentifier(OID) from string representation. -
Method Summary
Modifier and Type Method Description booleanequals(Object o)Compares this instance with the specified object and indicates if they are equal.inthashCode()Returns an integer hash code for this object.static booleanisOID(String str)Returns whether the given string is a valid ObjectIdentifier (OID) representation.static int[]toIntArray(String str)Gets ObjectIdentifier (OID) from string representation.StringtoString()Returns a string containing a concise, human-readable description of this object.static StringtoString(int[] oid)Returns string representation of OID.static voidvalidate(int[] oid)Validates ObjectIdentifier (OID).
-
Constructor Details
-
ObjectIdentifier
public ObjectIdentifier(int[] oid)Creates ObjectIdentifier(OID) from array of integers.- Parameters:
oid- array of integers- Throws:
IllegalArgumentException- if oid is invalid or null
-
ObjectIdentifier
Creates ObjectIdentifier(OID) from string representation.- Parameters:
strOid- oid string- Throws:
IllegalArgumentException- if oid string is invalid or null
-
-
Method Details
-
equals
Description copied from class:ObjectCompares this instance with the specified object and indicates if they are equal. In order to be equal,omust represent the same object as this instance using a class-specific comparison. The general contract is that this comparison should be reflexive, symmetric, and transitive. Also, no object reference other than null is equal to null.The default implementation returns
trueonly ifthis == o. See Writing a correctequalsmethod if you intend implementing your ownequalsmethod.The general contract for the
equalsandObject.hashCode()methods is that ifequalsreturnstruefor any two objects, thenhashCode()must return the same value for these objects. This means that subclasses ofObjectusually override either both methods or neither of them.- Overrides:
equalsin classObject- Parameters:
o- the object to compare this instance with.- Returns:
trueif the specified object is equal to thisObject;falseotherwise.- See Also:
Object.hashCode()
-
toString
Description copied from class:ObjectReturns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:getClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toStringmethod if you intend implementing your owntoStringmethod. -
hashCode
public int hashCode()Description copied from class:ObjectReturns an integer hash code for this object. By contract, any two objects for whichObject.equals(java.lang.Object)returnstruemust return the same hash code value. This means that subclasses ofObjectusually 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
hashCodemethod if you intend implementing your ownhashCodemethod.- Overrides:
hashCodein classObject- Returns:
- this object's hash code.
- See Also:
Object.equals(java.lang.Object)
-
validate
public static void validate(int[] oid)Validates ObjectIdentifier (OID).- Parameters:
oid- oid as array of integers- Throws:
IllegalArgumentException- if oid is invalid or null
-
toString
Returns string representation of OID. Note: it is supposed that passed array of integers contains valid OID value, so no checks are performed.- Parameters:
oid- oid as array of integers- Returns:
- oid string representation
-
toIntArray
Gets ObjectIdentifier (OID) from string representation. String representation is defined by the following syntax: OID = subidentifier 1*("." subidentifier) subidentifier = 1*(digit)- Parameters:
str- string representation of OID- Returns:
- oid as array of integers
- Throws:
IllegalArgumentException- if oid string is invalid or null
-
isOID
Returns whether the given string is a valid ObjectIdentifier (OID) representation. String representation is defined as fortoIntArray(java.lang.String).- Parameters:
str- string representation of OID- Returns:
- true if oidString has valid syntax or false if not
-