Example usage for java.util Scanner hasNextShort

List of usage examples for java.util Scanner hasNextShort

Introduction

In this page you can find the example usage for java.util Scanner hasNextShort.

Prototype

public boolean hasNextShort(int radix) 

Source Link

Document

Returns true if the next token in this scanner's input can be interpreted as a short value in the specified radix using the #nextShort method.

Usage

From source file:Main.java

public static void main(String[] args) {
    String s = "java2s.com 1 + 1 = 2.0 ";

    Scanner scanner = new Scanner(s);

    scanner.useLocale(Locale.US);

    while (scanner.hasNext()) {
        // check if the scanner's next token is a short with a radix 4
        System.out.println(scanner.hasNextShort(4));

        System.out.println(scanner.next());
    }/*  w  ww  . j  a  v a 2  s.  c  om*/

    scanner.close();
}