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


Java ParserUtils.parseTime方法代码示例

本文整理汇总了Java中com.google.samples.apps.iosched.util.ParserUtils.parseTime方法的典型用法代码示例。如果您正苦于以下问题:Java ParserUtils.parseTime方法的具体用法?Java ParserUtils.parseTime怎么用?Java ParserUtils.parseTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.google.samples.apps.iosched.util.ParserUtils的用法示例。


在下文中一共展示了ParserUtils.parseTime方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: outputBlock

import com.google.samples.apps.iosched.util.ParserUtils; //导入方法依赖的package包/类
private static void outputBlock(Block block, ArrayList<ContentProviderOperation> list) {
    Uri uri = ScheduleContractHelper.setUriAsCalledFromSyncAdapter(
            ScheduleContract.Blocks.CONTENT_URI);
    ContentProviderOperation.Builder builder = ContentProviderOperation.newInsert(uri);
    String title = block.title != null ? block.title : "";
    String meta = block.subtitle != null ? block.subtitle : "";

    String type = block.type;
    if ( ! ScheduleContract.Blocks.isValidBlockType(type)) {
        LOGW(TAG, "block from "+block.start+" to "+block.end+" has unrecognized type ("
                +type+"). Using "+ ScheduleContract.Blocks.BLOCK_TYPE_BREAK +" instead.");
        type = ScheduleContract.Blocks.BLOCK_TYPE_BREAK;
    }

    long startTimeL = ParserUtils.parseTime(block.start);
    long endTimeL = ParserUtils.parseTime(block.end);
    final String blockId = ScheduleContract.Blocks.generateBlockId(startTimeL, endTimeL);
    builder.withValue(ScheduleContract.Blocks.BLOCK_ID, blockId);
    builder.withValue(ScheduleContract.Blocks.BLOCK_TITLE, title);
    builder.withValue(ScheduleContract.Blocks.BLOCK_START, startTimeL);
    builder.withValue(ScheduleContract.Blocks.BLOCK_END, endTimeL);
    builder.withValue(ScheduleContract.Blocks.BLOCK_TYPE, type);
    builder.withValue(ScheduleContract.Blocks.BLOCK_SUBTITLE, meta);
    list.add(builder.build());
}
 
开发者ID:dreaminglion,项目名称:iosched-reader,代码行数:26,代码来源:BlocksHandler.java

示例2: outputBlock

import com.google.samples.apps.iosched.util.ParserUtils; //导入方法依赖的package包/类
private static void outputBlock(Block block, ArrayList<ContentProviderOperation> list) {
    Uri uri = ScheduleContract.addCallerIsSyncAdapterParameter(
            ScheduleContract.Blocks.CONTENT_URI);
    ContentProviderOperation.Builder builder = ContentProviderOperation.newInsert(uri);
    String title = block.title != null ? block.title : "";
    String meta = block.subtitle != null ? block.subtitle : "";

    String type = block.type;
    if ( ! ScheduleContract.Blocks.isValidBlockType(type)) {
        LOGW(TAG, "block from "+block.start+" to "+block.end+" has unrecognized type ("
                +type+"). Using "+ ScheduleContract.Blocks.BLOCK_TYPE_BREAK +" instead.");
        type = ScheduleContract.Blocks.BLOCK_TYPE_BREAK;
    }

    long startTimeL = ParserUtils.parseTime(block.start);
    long endTimeL = ParserUtils.parseTime(block.end);
    final String blockId = ScheduleContract.Blocks.generateBlockId(startTimeL, endTimeL);
    builder.withValue(ScheduleContract.Blocks.BLOCK_ID, blockId);
    builder.withValue(ScheduleContract.Blocks.BLOCK_TITLE, title);
    builder.withValue(ScheduleContract.Blocks.BLOCK_START, startTimeL);
    builder.withValue(ScheduleContract.Blocks.BLOCK_END, endTimeL);
    builder.withValue(ScheduleContract.Blocks.BLOCK_TYPE, type);
    builder.withValue(ScheduleContract.Blocks.BLOCK_SUBTITLE, meta);
    list.add(builder.build());
}
 
开发者ID:gdg-bh,项目名称:AppDevFestSudeste2015,代码行数:26,代码来源:BlocksHandler.java

示例3: preparePreConferenceDayAdapter

import com.google.samples.apps.iosched.util.ParserUtils; //导入方法依赖的package包/类
/**
 * This method is an ad-hoc implementation of the pre conference day, which contains an item to
 * pick up the badge at registration desk
 */
private void preparePreConferenceDayAdapter() {
    ScheduleItem item = new ScheduleItem();
    item.title = mContext.getString(R.string.my_schedule_badgepickup);
    item.startTime = ParserUtils.parseTime(BuildConfig.PRECONFERENCE_DAY_START);
    item.endTime = ParserUtils.parseTime(BuildConfig.PRECONFERENCE_DAY_END);
    item.type = ScheduleItem.BREAK;
    item.room =
            item.subtitle = mContext.getString(R.string.my_schedule_badgepickup_description);
    item.sessionType = ScheduleItem.SESSION_TYPE_MISC;
    mScheduleData.put(PRE_CONFERENCE_DAY_ID, Collections.singletonList(item));
}
 
开发者ID:google,项目名称:iosched,代码行数:16,代码来源:ScheduleModel.java

示例4: outputBlock

import com.google.samples.apps.iosched.util.ParserUtils; //导入方法依赖的package包/类
private static void outputBlock(Block block, ArrayList<ContentProviderOperation> list) {
    Uri uri = ScheduleContractHelper.setUriAsCalledFromSyncAdapter(
            ScheduleContract.Blocks.CONTENT_URI);
    ContentProviderOperation.Builder builder = ContentProviderOperation.newInsert(uri);
    String title = block.title != null ? block.title : "";
    String subtitle = block.subtitle != null ? block.subtitle : "";
    String kind = block.kind != null ? block.kind : "";

    String type = block.type;
    if ( ! ScheduleContract.Blocks.isValidBlockType(type)) {
        LOGW(TAG, "block from "+block.start+" to "+block.end+" has unrecognized type ("
                +type+"). Using "+ ScheduleContract.Blocks.BLOCK_TYPE_BREAK +" instead.");
        type = ScheduleContract.Blocks.BLOCK_TYPE_BREAK;
    }

    long startTimeL = ParserUtils.parseTime(block.start);
    long endTimeL = ParserUtils.parseTime(block.end);
    final String blockId = ScheduleContract.Blocks.generateBlockId(startTimeL, endTimeL);
    builder.withValue(ScheduleContract.Blocks.BLOCK_ID, blockId);
    builder.withValue(ScheduleContract.Blocks.BLOCK_TITLE, title);
    builder.withValue(ScheduleContract.Blocks.BLOCK_START, startTimeL);
    builder.withValue(ScheduleContract.Blocks.BLOCK_END, endTimeL);
    builder.withValue(ScheduleContract.Blocks.BLOCK_TYPE, type);
    builder.withValue(ScheduleContract.Blocks.BLOCK_SUBTITLE, subtitle);
    builder.withValue(ScheduleContract.Blocks.BLOCK_KIND, kind);
    list.add(builder.build());
}
 
开发者ID:google,项目名称:iosched,代码行数:28,代码来源:BlocksHandler.java


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