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


Java Validate.noNullElements方法代码示例

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


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

示例1: Leg

import org.apache.commons.lang.Validate; //导入方法依赖的package包/类
public Leg(Voyage voyage, Location loadLocation, Location unloadLocation, Date loadTime, Date unloadTime) {
    Validate.noNullElements(new Object[]{voyage, loadLocation, unloadLocation, loadTime, unloadTime});

    this.voyage = voyage;
    this.loadLocation = loadLocation;
    this.unloadLocation = unloadLocation;
    this.loadTime = loadTime;
    this.unloadTime = unloadTime;
}
 
开发者ID:jboz,项目名称:living-documentation,代码行数:10,代码来源:Leg.java

示例2: Itinerary

import org.apache.commons.lang.Validate; //导入方法依赖的package包/类
/**
 * Constructor.
 *
 * @param legs List of legs for this itinerary.
 */
public Itinerary(final List<Leg> legs) {
    Validate.notEmpty(legs);
    Validate.noNullElements(legs);

    this.legs = legs;
}
 
开发者ID:jboz,项目名称:living-documentation,代码行数:12,代码来源:Itinerary.java

示例3: Schedule

import org.apache.commons.lang.Validate; //导入方法依赖的package包/类
Schedule(final List<CarrierMovement> carrierMovements) {
    Validate.notNull(carrierMovements);
    Validate.noNullElements(carrierMovements);
    Validate.notEmpty(carrierMovements);

    this.carrierMovements = carrierMovements;
}
 
开发者ID:jboz,项目名称:living-documentation,代码行数:8,代码来源:Schedule.java

示例4: CarrierMovement

import org.apache.commons.lang.Validate; //导入方法依赖的package包/类
/**
 * Constructor.
 *
 * @param departureLocation location of departure
 * @param arrivalLocation   location of arrival
 * @param departureTime     time of departure
 * @param arrivalTime       time of arrival
 */
// TODO make package local
public CarrierMovement(Location departureLocation,
                       Location arrivalLocation,
                       Date departureTime,
                       Date arrivalTime) {
    Validate.noNullElements(new Object[]{departureLocation, arrivalLocation, departureTime, arrivalTime});
    this.departureTime = departureTime;
    this.arrivalTime = arrivalTime;
    this.departureLocation = departureLocation;
    this.arrivalLocation = arrivalLocation;
}
 
开发者ID:jboz,项目名称:living-documentation,代码行数:20,代码来源:CarrierMovement.java

示例5: addItem

import org.apache.commons.lang.Validate; //导入方法依赖的package包/类
public HashMap<Integer, ItemStack> addItem(ItemStack... items) {
    Validate.noNullElements(items, "Item cannot be null");
    HashMap<Integer, ItemStack> leftover = new HashMap<Integer, ItemStack>();

    /* TODO: some optimization
     *  - Create a 'firstPartial' with a 'fromIndex'
     *  - Record the lastPartial per Material
     *  - Cache firstEmpty result
     */

    for (int i = 0; i < items.length; i++) {
        ItemStack item = items[i];
        while (true) {
            // Do we already have a stack of it?
            int firstPartial = firstPartial(item);

            // Drat! no partial stack
            if (firstPartial == -1) {
                // Find a free spot!
                int firstFree = firstEmpty();

                if (firstFree == -1) {
                    // No space at all!
                    leftover.put(i, item);
                    break;
                } else {
                    // More than a single stack!
                    if (item.getAmount() > getMaxItemStack()) {
                        CraftItemStack stack = CraftItemStack.asCraftCopy(item);
                        stack.setAmount(getMaxItemStack());
                        setItem(firstFree, stack);
                        item.setAmount(item.getAmount() - getMaxItemStack());
                    } else {
                        // Just store it
                        setItem(firstFree, item);
                        break;
                    }
                }
            } else {
                // So, apparently it might only partially fit, well lets do just that
                ItemStack partialItem = getItem(firstPartial);

                int amount = item.getAmount();
                int partialAmount = partialItem.getAmount();
                int maxAmount = partialItem.getMaxStackSize();

                // Check if it fully fits
                if (amount + partialAmount <= maxAmount) {
                    partialItem.setAmount(amount + partialAmount);
                    break;
                }

                // It fits partially
                partialItem.setAmount(maxAmount);
                item.setAmount(amount + partialAmount - maxAmount);
            }
        }
    }
    return leftover;
}
 
开发者ID:UraniumMC,项目名称:Uranium,代码行数:61,代码来源:CraftInventory.java

示例6: pushAll

import org.apache.commons.lang.Validate; //导入方法依赖的package包/类
public void pushAll(final Collection<Record> rs) {
    Validate.notNull(rs);
    Validate.noNullElements(rs);
    this.doPushAll(rs);
    this.statPush(rs.size(), this.getByteSize(rs));
}
 
开发者ID:yaogdu,项目名称:datax,代码行数:7,代码来源:Channel.java


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