حتما تاحالا پیش اومده که بخواهید مقدار ارسال شده به یک متد را ارزیابی کنید تا به خطاهای متداول


NullPointer


IndexOutOfBound


و از این قبیل بر نخورید به نظرتون روش های انجام این کار در حالت ساده در یک متد چیه؟

Before:

public Delivery createDelivery(Order order,User deliveryPerson){
   if(order.getAddress()==null){
     throw new NullPointerException("order address");
   }
   if(!workSchedule.isOnDuty(deliveryPerson, order.getArrivalTime())){
     throw new IllegalArgumentException(
         String.format("%s is not on duty for %s", deliveryPerson, order));
   }

   return new RealDelivery(order, deliveryPerson);
 }

ولی راه حل ساده تری هم است تا این رفتارها را در یک سری متدهای استاتیک بگذاریم و اون متد را صدا بزنیم ولی برای اینکار شرکت گوگل یک راه در قالب


precondition


ارایه کرده البیته در قالب


Google's Core Libraries for Java


حالا راه حل قبلی را با کد زیر مقایسه کنید
 

 

After:

publicDelivery createDelivery(Order order,User deliveryPerson){
   Preconditions.checkNotNull(order.getAddress(),"order address");
   Preconditions.checkArgument(workSchedule.isOnDuty(deliveryPerson, order.getArrivalTime()), "%s is not on duty for %s", deliveryPerson, order);

   return new RealDelivery(order, deliveryPerson);
 }

Method Summary
static void checkArgument(boolean expression)
          Ensures the truth of an expression involving one or more parameters to the calling method.
static void checkArgument(boolean expression, Object errorMessage)
          Ensures the truth of an expression involving one or more parameters to the calling method.
static void checkArgument(boolean expression, String errorMessageTemplate, Object... errorMessageArgs)
          Ensures the truth of an expression involving one or more parameters to the calling method.
static int checkElementIndex(int index, int size)
          Ensures that index specifies a valid element in an array, list or string of size size.
static int checkElementIndex(int index, int size, String desc)
          Ensures that index specifies a valid element in an array, list or string of size size.
static
<T> T
checkNotNull(T reference)
          Ensures that an object reference passed as a parameter to the calling method is not null.
static
<T> T
checkNotNull(T reference, Object errorMessage)
          Ensures that an object reference passed as a parameter to the calling method is not null.
static
<T> T
checkNotNull(T reference, String errorMessageTemplate, Object... errorMessageArgs)
          Ensures that an object reference passed as a parameter to the calling method is not null.
static int checkPositionIndex(int index, int size)
          Ensures that index specifies a valid position in an array, list or string of size size.
static int checkPositionIndex(int index, int size, String desc)
          Ensures that index specifies a valid position in an array, list or string of size size.
static void checkPositionIndexes(int start, int end, int size)
          Ensures that start and end specify a valid positions in an array, list or string of size size, and are in order.
static void checkState(boolean expression)
          Ensures the truth of an expression involving the state of the calling instance, but not involving any parameters to the calling method.
static void checkState(boolean expression, Object errorMessage)
          Ensures the truth of an expression involving the state of the calling instance, but not involving any parameters to the calling method.
static void checkState(boolean expression, String errorMessageTemplate, Object... errorMessageArgs)
          Ensures the truth of an expression involving the state of the calling instance, but not involving any parameters to the calling method.