Java 类org.codehaus.jackson.map.util.StdDateFormat 实例源码

项目:12306-android-Decompile    文件:MapperConfig.java   
@Deprecated
public void setDateFormat(DateFormat paramDateFormat)
{
  if (paramDateFormat == null)
    paramDateFormat = StdDateFormat.instance;
  this._base = this._base.withDateFormat(paramDateFormat);
}
项目:12306-android-Decompile    文件:MapperConfig.java   
@Deprecated
public void setDateFormat(DateFormat paramDateFormat)
{
  if (paramDateFormat == null)
    paramDateFormat = StdDateFormat.instance;
  this._base = this._base.withDateFormat(paramDateFormat);
}
项目:RHome    文件:DeserializationConfig.java   
/**
 * Method that will set the textual deserialization to use for
 * deserializing Dates (and Calendars). If null is passed, will
 * use {@link StdDateFormat}.
 */
public void setDateFormat(DateFormat df) {
    _dateFormat = (df == null) ? StdDateFormat.instance : df;
}