Class TokenizerParser

  • All Implemented Interfaces:
    java.util.Enumeration<java.lang.Object>

    public class TokenizerParser
    extends java.util.StringTokenizer
    A StringTokenizer with extensions to retrieve the values of numeric tokens, as well as strings.
    • Constructor Summary

      Constructors 
      Constructor Description
      TokenizerParser​(java.lang.String string, java.lang.String delimiters)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int nextByte()
      Convert the next token into a byte
      int nextHexInt()
      Convert the next token into a base 16 int
      int nextInt()
      Convert the next token into an int
      int nextInt​(int radix)
      Convert the next token into an int with base radix
      long nextLong()
      Convert the next token into a long
      int nextShort()
      Convert the next token into a short
      • Methods inherited from class java.util.StringTokenizer

        countTokens, hasMoreElements, hasMoreTokens, nextElement, nextToken, nextToken
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • TokenizerParser

        public TokenizerParser​(java.lang.String string,
                               java.lang.String delimiters)
    • Method Detail

      • nextByte

        public int nextByte()
        Convert the next token into a byte
      • nextShort

        public int nextShort()
        Convert the next token into a short
      • nextInt

        public int nextInt()
        Convert the next token into an int
      • nextInt

        public int nextInt​(int radix)
        Convert the next token into an int with base radix
        Parameters:
        radix - the base into which to convert the next token
      • nextHexInt

        public int nextHexInt()
        Convert the next token into a base 16 int
      • nextLong

        public long nextLong()
        Convert the next token into a long