Class Validate

java.lang.Object
org.jboss.shrinkwrap.impl.base.Validate

public final class Validate extends Object
Validate Validation utility
Version:
$Revision: $
  • Constructor Details

    • Validate

      private Validate()
  • Method Details

    • notNull

      public static void notNull(Object obj, String message) throws IllegalArgumentException
      Checks that object is not null, throws exception if it is.
      Parameters:
      obj - The object to check
      message - The exception message
      Throws:
      IllegalArgumentException - Thrown if obj is null
    • notNullOrEmpty

      public static void notNullOrEmpty(String string, String message) throws IllegalArgumentException
      Checks that the specified String is not null or empty, throws exception if it is.
      Parameters:
      string - The object to check
      message - The exception message
      Throws:
      IllegalArgumentException - Thrown if obj is null
    • notNullAndNoNullValues

      public static void notNullAndNoNullValues(Object[] objects, String message)
      Checks that the specified array is not null or contain any null values.
      Parameters:
      objects - The object to check
      message - The exception message