Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    /**
     * Null-safe method for converting the given string to lower-case.
     *
     * @param string the string.
     * @return the string in lower-case.
     */
    public static String lower(String string) {
        return string != null ? string.toLowerCase() : null;
    }
}