if (sOid.charAt(0) >= '0' && sOid.charAt(0) <= '9') {
int[] array = org.apache.harmony.security.asn1.ObjectIdentifier
.toIntArray(sOid);
ObjectIdentifier thisOid = getOID(array);
if (thisOid == null) {
thisOid = new ObjectIdentifier(array);
}
this.oid = thisOid;
} else {
this.oid = (ObjectIdentifier) KNOWN_NAMES.get(Util.toUpperCase(sOid));