/* */ public static <T extends Serializable> SimpleValue<T> wrap(T object)
/* */ {
/* 56 */ if (object == null)
/* 57 */ return null;
/* 58 */ String className = object.getClass().getName();
/* 59 */ SimpleMetaType metaType = SimpleMetaType.resolve(className);
/* 60 */ return new SimpleValueSupport(metaType, object);
/* */ }