当前位置: 首页>>代码示例>>Java>>正文


Java LocalTime.toString方法代码示例

本文整理汇总了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()); 
		}			
	}
}
 
开发者ID:TIBCOSoftware,项目名称:jasperreports,代码行数:24,代码来源:DateTimeFunctions.java

示例2: serialize

import org.joda.time.LocalTime; //导入方法依赖的package包/类
@Override
public JsonElement serialize(LocalTime src, Type typeOfSrc, JsonSerializationContext context) {
    return new JsonPrimitive(src.toString());
}
 
开发者ID:3wks,项目名称:generator-thundr-gae-react,代码行数:5,代码来源:LocalTimeTypeAdapter.java

示例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);
}
 
开发者ID:MTBehnke,项目名称:NightSkyGuide,代码行数:7,代码来源:ObservationAddFragment.java

示例4: marshal

import org.joda.time.LocalTime; //导入方法依赖的package包/类
@Override
public String marshal(LocalTime time) {
    return time.toString();
}
 
开发者ID:suomenriistakeskus,项目名称:oma-riista-web,代码行数:5,代码来源:LocalTimeAdapter.java

示例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);
}
 
开发者ID:canyapan,项目名称:DietDiaryApp,代码行数:5,代码来源:DateTimeHelper.java


注:本文中的org.joda.time.LocalTime.toString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。