Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.util.List;

public class Main {
    public static final String HOTWORD_START = "Ciao telefono";

    public static boolean isStartHotWord(List<String> strings) {
        for (String s : strings) {
            if (s.equalsIgnoreCase(HOTWORD_START)) {
                return true;
            }
        }
        return false;
    }
}