本文整理汇总了Java中chatty.util.DateTime.format方法的典型用法代码示例。如果您正苦于以下问题:Java DateTime.format方法的具体用法?Java DateTime.format怎么用?Java DateTime.format使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类chatty.util.DateTime
的用法示例。
在下文中一共展示了DateTime.format方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addTimestampFormat
import chatty.util.DateTime; //导入方法依赖的package包/类
public static void addTimestampFormat(Map<String, String> timestampOptions, String format) {
String label = format;
if (!format.equals("off")) {
int hour = DateTime.currentHour12Hour();
if (hour > 0 && hour < 10) {
label = DateTime.currentTime(format);
} else {
label = DateTime.format(System.currentTimeMillis() - 4*60*60*1000, new SimpleDateFormat(format));
}
}
timestampOptions.put(format, label);
}
示例2: addTimestampFormat
import chatty.util.DateTime; //导入方法依赖的package包/类
private void addTimestampFormat(String format) {
String label = format;
if (!format.equals("off")) {
int hour = DateTime.currentHour12Hour();
if (hour > 0 && hour < 10) {
label = DateTime.currentTime(format);
} else {
label = DateTime.format(System.currentTimeMillis() - 4*60*60*1000, new SimpleDateFormat(format));
}
}
timestampOptions.put(format, label);
}
示例3: toString
import chatty.util.DateTime; //导入方法依赖的package包/类
@Override
public String toString() {
return DateTime.format(time)+" "+info.getCapitalizedName()
+(info.getFollowed() ? " (followed)" : "");
}
示例4: toString
import chatty.util.DateTime; //导入方法依赖的package包/类
@Override
public String toString() {
return DateTime.format(time)+" "+info.getDisplayName()
+(info.getFollowed() ? " (followed)" : "");
}
示例5: toString
import chatty.util.DateTime; //导入方法依赖的package包/类
@Override
public String toString() {
return DateTime.format(time)+" "+info.getStream()
+(info.getFollowed() ? " (followed)" : "");
}