OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ObjectIdentifier
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ObjectIdentifier.java
28
* Instance of this class represents
ObjectIdentifier
(OID).
41
public final class
ObjectIdentifier
{
50
* Creates
ObjectIdentifier
(OID) from array of integers.
55
public
ObjectIdentifier
(int[] oid) {
61
* Creates
ObjectIdentifier
(OID) from string representation.
66
public
ObjectIdentifier
(String strOid) {
78
return Arrays.equals(oid, ((
ObjectIdentifier
) o).oid);
98
* Validates
ObjectIdentifier
(OID).
148
* Gets
ObjectIdentifier
(OID) from string representation.
163
* Returns whether the given string is a valid
ObjectIdentifier
[
all
...]
/libcore/luni/src/main/java/org/apache/harmony/security/utils/
ObjectIdentifier.java
27
* Instance of this class represents
ObjectIdentifier
(OID).
40
public final class
ObjectIdentifier
{
61
* Creates
ObjectIdentifier
(OID) from array of integers.
68
public
ObjectIdentifier
(int[] oid) {
76
* Creates
ObjectIdentifier
(OID) from array of integers.
85
public
ObjectIdentifier
(int[] oid, String name, Object oidGroup) {
127
* @return true if object is
ObjectIdentifier
and it has the same
137
return Arrays.equals(oid, ((
ObjectIdentifier
) o).oid);
182
* Validates
ObjectIdentifier
(OID).
Completed in 158 milliseconds