Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.ArrayList;

public class Main {
    @SuppressWarnings("serial")
    private static final ArrayList<String> stopwords = new ArrayList<String>() {
        {
            add("I");
            add("a");
            add("about");
            add("an");
            add("are");
            add("as");
            add("at");
            add("be");
            add("by");
            add("for");
            add("from");
            add("how");
            add("in");
            add("is");
            add("it");
            add("of");
            add("on");
            add("or");
            add("that");
            add("the");
            add("this");
            add("to");
            add("was");
            add("what");
            add("when");
            add("where");
            add("who");
            add("will");
            add("with");
            add("the");
        }
    };

    private static boolean exists(String s) {
        return stopwords.contains(s.toLowerCase());
    }
}