本文整理汇总了Java中org.joda.time.LocalTime.toString方法的典型用法代码示例。如果您正苦于以下问题:Java LocalTime.toString方法的具体用法?Java LocalTime.toString怎么用?Java LocalTime.toString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.joda.time.LocalTime
的用法示例。
在下文中一共展示了LocalTime.toString方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: TIME
import org.joda.time.LocalTime; //导入方法依赖的package包/类
public static String TIME(Integer hours, Integer minutes, Integer seconds, String timePattern){
if(hours==null || minutes==null || seconds==null) {
if(log.isDebugEnabled()){
log.debug("None of the arguments can be null.");
}
return null;
}
LocalTime lt=new LocalTime(hours,minutes,seconds);
if(timePattern==null) {
return lt.toString(DateTimeFormat.longTime());
}
else{
try{
// Try to convert to a pattern
DateTimeFormatter dtf = DateTimeFormat.forPattern(timePattern);
return lt.toString(dtf);
}
catch (IllegalArgumentException ex){
// Fallback to the default solution
return lt.toString(DateTimeFormat.longTime());
}
}
}
示例2: serialize
import org.joda.time.LocalTime; //导入方法依赖的package包/类
@Override
public JsonElement serialize(LocalTime src, Type typeOfSrc, JsonSerializationContext context) {
return new JsonPrimitive(src.toString());
}
示例3: onTimeSet
import org.joda.time.LocalTime; //导入方法依赖的package包/类
@Override
public void onTimeSet(TimePicker timeListener, int h, int m) {
newTime = new LocalTime(h, m);
String currentTime = newTime.toString(timeFormat);
timeTextInputLayout.getEditText().setText(currentTime);
}
示例4: marshal
import org.joda.time.LocalTime; //导入方法依赖的package包/类
@Override
public String marshal(LocalTime time) {
return time.toString();
}
示例5: convertLocalTimeToString
import org.joda.time.LocalTime; //导入方法依赖的package包/类
@NonNull
public static String convertLocalTimeToString(final boolean is24HourMode, @NonNull final LocalTime time) {
return time.toString(is24HourMode ? TIME_FORMAT_24H : TIME_FORMAT_AMPM);
}