Java Scanner Usage waitForStopSignal()

Here you can find the source of waitForStopSignal()

Description

wait For Stop Signal

License

Apache License

Declaration

public static void waitForStopSignal() 

Method Source Code

//package com.java2s;
/*//from w ww  . j av a  2  s.c o m
 * Copyright 2010-2013 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.Scanner;

public class Main {
    protected static final String TERM_TOKEN = "<TERM/>";

    public static void waitForStopSignal() {
        Scanner in = new Scanner(System.in);
        while (!TERM_TOKEN.equals(in.next()))
            ;
    }
}

Related

  1. toWords(String content)
  2. transformTXTandANNtoRQS(String TXT, String ANN)
  3. trim(String s)
  4. validateInt(Scanner keyboard, String message, String error)
  5. waitForEnter()
  6. wrap(String msg, int wrapWidth, int wrapTolerance)