Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    private static final String RECORD_TABLE_PREFIX = "_";

    public static boolean validRecordTable(String table) {
        if (null == table) {
            return false;
        } else {
            return table.startsWith(RECORD_TABLE_PREFIX);
        }
    }
}