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


Java DurationFieldType.getName方法代码示例

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


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

示例1: addPeriodInto

import org.joda.time.DurationFieldType; //导入方法依赖的package包/类
/**
 * Adds the fields from another period.
 * 
 * @param values  the array of values to update
 * @param period  the period to add from, not null
 * @return the updated values
 * @throws IllegalArgumentException if an unsupported field's value is non-zero
 */
protected int[] addPeriodInto(int[] values, ReadablePeriod period) {
    for (int i = 0, isize = period.size(); i < isize; i++) {
        DurationFieldType type = period.getFieldType(i);
        int value = period.getValue(i);
        if (value != 0) {
            int index = indexOf(type);
            if (index == -1) {
                throw new IllegalArgumentException(
                    "Period does not support field '" + type.getName() + "'");
            } else {
                values[index] = FieldUtils.safeAdd(getValue(index), value);
            }
        }
    }
    return values;
}
 
开发者ID:redfish64,项目名称:TinyTravelTracker,代码行数:25,代码来源:BasePeriod.java

示例2: checkAndUpdate

import org.joda.time.DurationFieldType; //导入方法依赖的package包/类
/**
 * Checks whether a field type is supported, and if so adds the new value
 * to the relevant index in the specified array.
 * 
 * @param type  the field type
 * @param values  the array to update
 * @param newValue  the new value to store if successful
 */
private void checkAndUpdate(DurationFieldType type, int[] values, int newValue) {
    int index = indexOf(type);
    if (index == -1) {
        if (newValue != 0) {
            throw new IllegalArgumentException(
                "Period does not support field '" + type.getName() + "'");
        }
    } else {
        values[index] = newValue;
    }
}
 
开发者ID:redfish64,项目名称:TinyTravelTracker,代码行数:20,代码来源:BasePeriod.java


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