Here you can find the source of fromString(String value)
private static Object fromString(String value)
//package com.java2s; //License from project: Open Source License public class Main { /**//from w w w .ja va 2 s . c o m * Returns the given String value. */ private static Object fromString(String value) { return // "null" is the external string representation of null "null".equals(value) ? null : value; } }