Here you can find the source of castToString(Object object)
Parameter | Description |
---|---|
object | a parameter |
public static String castToString(Object object)
//package com.java2s; /*// ww w.j a v a2 s .c om Pulsar Copyright (C) 2013-2015 eBay Software Foundation Licensed under the GPL v2 license. See LICENSE for full terms. */ public class Main { /** * Sometimes ELP's version of cast is misbehaving * * @param object * @return */ public static String castToString(Object object) { return object == null ? null : object.toString(); } }