Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

import java.util.List;

public class Main {
    private static List<String> COMPANY_PREFIX_LIST = new ArrayList<String>();

    protected static boolean isCompanyThreadName(String threadName) {
        for (String company : COMPANY_PREFIX_LIST) {
            if (threadName.startsWith(company)) {
                return true;
            }
        }
        return false;
    }
}