Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    /**
     * Gets an element in its String representation
     *
     * @param obj The object to be transformed
     * @return The String representation
     */
    public static String valueOf(Object obj) {
        return (obj == null) ? "null" : obj.toString();
    }
}