Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    /**
     * @param toCheck
     * @return
     */
    public static boolean isValidAtom(String toCheck) {
        String lowerCase = toCheck.toLowerCase();
        return !toCheck.contains(" ") && !toCheck.contains(",") && toCheck.equals(lowerCase);
    }
}