當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。