本文整理汇总了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;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例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));
}