Package org.bouncycastle.asn1
Class OIDTokenizer
- java.lang.Object
-
- org.bouncycastle.asn1.OIDTokenizer
-
public class OIDTokenizer extends java.lang.ObjectDeprecated.Will be removedClass for breaking up an OID into it's component tokens, ala java.util.StringTokenizer. We need this class as some of the lightweight Java environment don't support classes like StringTokenizer.
-
-
Constructor Summary
Constructors Constructor Description OIDTokenizer(java.lang.String oid)Deprecated.Base constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanhasMoreTokens()Deprecated.Return whether or not there are more tokens in this tokenizer.java.lang.StringnextToken()Deprecated.Return the next token in the underlying String.
-
-
-
Method Detail
-
hasMoreTokens
public boolean hasMoreTokens()
Deprecated.Return whether or not there are more tokens in this tokenizer.- Returns:
- true if there are more tokens, false otherwise.
-
nextToken
public java.lang.String nextToken()
Deprecated.Return the next token in the underlying String.- Returns:
- the next token.
-
-