Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    /**
     * @author DUYPT
     * @param data
     * @return
     */
    public static String toString(Object data) {
        if (data != null) {
            return data.toString();
        }
        return null;
    }
}