Package org.bouncycastle.asn1
Class OIDTokenizer
- java.lang.Object
-
- org.bouncycastle.asn1.OIDTokenizer
-
public class OIDTokenizer extends java.lang.ObjectClass 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)Base constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasMoreTokens()Return whether or not there are more tokens in this tokenizer.java.lang.StringnextToken()Return the next token in the underlying String.
-