Home | History | Annotate | Download | only in qualified

Lines Matching defs:obj

29     DEREncodable      obj;
31 public static TypeOfBiometricData getInstance(Object obj)
33 if (obj == null || obj instanceof TypeOfBiometricData)
35 return (TypeOfBiometricData)obj;
38 if (obj instanceof DERInteger)
40 DERInteger predefinedBiometricTypeObj = DERInteger.getInstance(obj);
45 else if (obj instanceof DERObjectIdentifier)
47 DERObjectIdentifier BiometricDataID = DERObjectIdentifier.getInstance(obj);
58 obj = new DERInteger(predefinedBiometricType);
68 obj = BiometricDataID;
73 return obj instanceof DERInteger;
78 return ((DERInteger)obj).getValue().intValue();
83 return (DERObjectIdentifier)obj;
88 return obj.getDERObject();