Here you can find the source of getTimeFormat(String format)
Parameter | Description |
---|---|
format | a parameter |
private static SimpleDateFormat getTimeFormat(String format)
//package com.java2s; import java.text.SimpleDateFormat; public class Main { private static SimpleDateFormat getTimeFormat(String format) { return new SimpleDateFormat(format); }/*from www . ja v a 2 s . com*/ }