Validate.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3;

  18. import java.util.Collection;
  19. import java.util.Iterator;
  20. import java.util.Map;
  21. import java.util.Objects;
  22. import java.util.function.Supplier;
  23. import java.util.regex.Pattern;

  24. /**
  25.  * This class assists in validating arguments. The validation methods are
  26.  * based along the following principles:
  27.  * <ul>
  28.  *   <li>An invalid {@code null} argument causes a {@link NullPointerException}.</li>
  29.  *   <li>A non-{@code null} argument causes an {@link IllegalArgumentException}.</li>
  30.  *   <li>An invalid index into an array/collection/map/string causes an {@link IndexOutOfBoundsException}.</li>
  31.  * </ul>
  32.  *
  33.  * <p>All exceptions messages are
  34.  * <a href="https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html#syntax">format strings</a>
  35.  * as defined by the Java platform. For example:
  36.  *
  37.  * <pre>
  38.  * Validate.isTrue(i &gt; 0, "The value must be greater than zero: %d", i);
  39.  * Validate.notNull(surname, "The surname must not be %s", null);
  40.  * </pre>
  41.  *
  42.  * <p>#ThreadSafe#</p>
  43.  * @see String#format(String, Object...)
  44.  * @since 2.0
  45.  */
  46. public class Validate {

  47.     private static final String DEFAULT_NOT_NAN_EX_MESSAGE =
  48.         "The validated value is not a number";
  49.     private static final String DEFAULT_FINITE_EX_MESSAGE =
  50.         "The value is invalid: %f";
  51.     private static final String DEFAULT_EXCLUSIVE_BETWEEN_EX_MESSAGE =
  52.         "The value %s is not in the specified exclusive range of %s to %s";
  53.     private static final String DEFAULT_INCLUSIVE_BETWEEN_EX_MESSAGE =
  54.         "The value %s is not in the specified inclusive range of %s to %s";
  55.     private static final String DEFAULT_MATCHES_PATTERN_EX = "The string %s does not match the pattern %s";
  56.     private static final String DEFAULT_IS_NULL_EX_MESSAGE = "The validated object is null";
  57.     private static final String DEFAULT_IS_TRUE_EX_MESSAGE = "The validated expression is false";
  58.     private static final String DEFAULT_NO_NULL_ELEMENTS_ARRAY_EX_MESSAGE =
  59.         "The validated array contains null element at index: %d";
  60.     private static final String DEFAULT_NO_NULL_ELEMENTS_COLLECTION_EX_MESSAGE =
  61.         "The validated collection contains null element at index: %d";
  62.     private static final String DEFAULT_NOT_BLANK_EX_MESSAGE = "The validated character sequence is blank";
  63.     private static final String DEFAULT_NOT_EMPTY_ARRAY_EX_MESSAGE = "The validated array is empty";
  64.     private static final String DEFAULT_NOT_EMPTY_CHAR_SEQUENCE_EX_MESSAGE =
  65.         "The validated character sequence is empty";
  66.     private static final String DEFAULT_NOT_EMPTY_COLLECTION_EX_MESSAGE = "The validated collection is empty";
  67.     private static final String DEFAULT_NOT_EMPTY_MAP_EX_MESSAGE = "The validated map is empty";
  68.     private static final String DEFAULT_VALID_INDEX_ARRAY_EX_MESSAGE = "The validated array index is invalid: %d";
  69.     private static final String DEFAULT_VALID_INDEX_CHAR_SEQUENCE_EX_MESSAGE =
  70.         "The validated character sequence index is invalid: %d";
  71.     private static final String DEFAULT_VALID_INDEX_COLLECTION_EX_MESSAGE =
  72.         "The validated collection index is invalid: %d";
  73.     private static final String DEFAULT_VALID_STATE_EX_MESSAGE = "The validated state is false";
  74.     private static final String DEFAULT_IS_ASSIGNABLE_EX_MESSAGE = "Cannot assign a %s to a %s";
  75.     private static final String DEFAULT_IS_INSTANCE_OF_EX_MESSAGE = "Expected type: %s, actual: %s";

  76.     /**
  77.      * Validate that the specified primitive value falls between the two
  78.      * exclusive values specified; otherwise, throws an exception.
  79.      *
  80.      * <pre>Validate.exclusiveBetween(0.1, 2.1, 1.1);</pre>
  81.      *
  82.      * @param start the exclusive start value
  83.      * @param end   the exclusive end value
  84.      * @param value the value to validate
  85.      * @throws IllegalArgumentException if the value falls out of the boundaries
  86.      * @since 3.3
  87.      */
  88.     @SuppressWarnings("boxing")
  89.     public static void exclusiveBetween(final double start, final double end, final double value) {
  90.         // TODO when breaking BC, consider returning value
  91.         if (value <= start || value >= end) {
  92.             throw new IllegalArgumentException(String.format(DEFAULT_EXCLUSIVE_BETWEEN_EX_MESSAGE, value, start, end));
  93.         }
  94.     }

  95.     /**
  96.      * Validate that the specified primitive value falls between the two
  97.      * exclusive values specified; otherwise, throws an exception with the
  98.      * specified message.
  99.      *
  100.      * <pre>Validate.exclusiveBetween(0.1, 2.1, 1.1, "Not in range");</pre>
  101.      *
  102.      * @param start the exclusive start value
  103.      * @param end   the exclusive end value
  104.      * @param value the value to validate
  105.      * @param message the exception message if invalid, not null
  106.      * @throws IllegalArgumentException if the value falls outside the boundaries
  107.      * @since 3.3
  108.      */
  109.     public static void exclusiveBetween(final double start, final double end, final double value, final String message) {
  110.         // TODO when breaking BC, consider returning value
  111.         if (value <= start || value >= end) {
  112.             throw new IllegalArgumentException(message);
  113.         }
  114.     }

  115.     /**
  116.      * Validate that the specified primitive value falls between the two
  117.      * exclusive values specified; otherwise, throws an exception.
  118.      *
  119.      * <pre>Validate.exclusiveBetween(0, 2, 1);</pre>
  120.      *
  121.      * @param start the exclusive start value
  122.      * @param end   the exclusive end value
  123.      * @param value the value to validate
  124.      * @throws IllegalArgumentException if the value falls out of the boundaries
  125.      * @since 3.3
  126.      */
  127.     @SuppressWarnings("boxing")
  128.     public static void exclusiveBetween(final long start, final long end, final long value) {
  129.         // TODO when breaking BC, consider returning value
  130.         if (value <= start || value >= end) {
  131.             throw new IllegalArgumentException(String.format(DEFAULT_EXCLUSIVE_BETWEEN_EX_MESSAGE, value, start, end));
  132.         }
  133.     }

  134.     /**
  135.      * Validate that the specified primitive value falls between the two
  136.      * exclusive values specified; otherwise, throws an exception with the
  137.      * specified message.
  138.      *
  139.      * <pre>Validate.exclusiveBetween(0, 2, 1, "Not in range");</pre>
  140.      *
  141.      * @param start the exclusive start value
  142.      * @param end   the exclusive end value
  143.      * @param value the value to validate
  144.      * @param message the exception message if invalid, not null
  145.      * @throws IllegalArgumentException if the value falls outside the boundaries
  146.      * @since 3.3
  147.      */
  148.     public static void exclusiveBetween(final long start, final long end, final long value, final String message) {
  149.         // TODO when breaking BC, consider returning value
  150.         if (value <= start || value >= end) {
  151.             throw new IllegalArgumentException(message);
  152.         }
  153.     }

  154.     /**
  155.      * Validate that the specified argument object fall between the two
  156.      * exclusive values specified; otherwise, throws an exception.
  157.      *
  158.      * <pre>Validate.exclusiveBetween(0, 2, 1);</pre>
  159.      *
  160.      * @param <T> the type of the argument object
  161.      * @param start  the exclusive start value, not null
  162.      * @param end  the exclusive end value, not null
  163.      * @param value  the object to validate, not null
  164.      * @throws IllegalArgumentException if the value falls outside the boundaries
  165.      * @see #exclusiveBetween(Object, Object, Comparable, String, Object...)
  166.      * @since 3.0
  167.      */
  168.     public static <T> void exclusiveBetween(final T start, final T end, final Comparable<T> value) {
  169.         // TODO when breaking BC, consider returning value
  170.         if (value.compareTo(start) <= 0 || value.compareTo(end) >= 0) {
  171.             throw new IllegalArgumentException(String.format(DEFAULT_EXCLUSIVE_BETWEEN_EX_MESSAGE, value, start, end));
  172.         }
  173.     }

  174.     /**
  175.      * Validate that the specified argument object fall between the two
  176.      * exclusive values specified; otherwise, throws an exception with the
  177.      * specified message.
  178.      *
  179.      * <pre>Validate.exclusiveBetween(0, 2, 1, "Not in boundaries");</pre>
  180.      *
  181.      * @param <T> the type of the argument object
  182.      * @param start  the exclusive start value, not null
  183.      * @param end  the exclusive end value, not null
  184.      * @param value  the object to validate, not null
  185.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  186.      * @param values  the optional values for the formatted exception message, null array not recommended
  187.      * @throws IllegalArgumentException if the value falls outside the boundaries
  188.      * @see #exclusiveBetween(Object, Object, Comparable)
  189.      * @since 3.0
  190.      */
  191.     public static <T> void exclusiveBetween(final T start, final T end, final Comparable<T> value, final String message, final Object... values) {
  192.         // TODO when breaking BC, consider returning value
  193.         if (value.compareTo(start) <= 0 || value.compareTo(end) >= 0) {
  194.             throw new IllegalArgumentException(getMessage(message, values));
  195.         }
  196.     }

  197.     /**
  198.      * Validates that the specified argument is not infinite or Not-a-Number (NaN);
  199.      * otherwise throwing an exception.
  200.      *
  201.      * <pre>Validate.finite(myDouble);</pre>
  202.      *
  203.      * <p>The message of the exception is &quot;The value is invalid: %f&quot;.</p>
  204.      *
  205.      * @param value  the value to validate
  206.      * @throws IllegalArgumentException if the value is infinite or Not-a-Number (NaN)
  207.      * @see #finite(double, String, Object...)
  208.      * @since 3.5
  209.      */
  210.     public static void finite(final double value) {
  211.         finite(value, DEFAULT_FINITE_EX_MESSAGE, value);
  212.     }

  213.     /**
  214.      * Validates that the specified argument is not infinite or Not-a-Number (NaN);
  215.      * otherwise throwing an exception with the specified message.
  216.      *
  217.      * <pre>Validate.finite(myDouble, "The argument must contain a numeric value");</pre>
  218.      *
  219.      * @param value the value to validate
  220.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  221.      * @param values  the optional values for the formatted exception message
  222.      * @throws IllegalArgumentException if the value is infinite or Not-a-Number (NaN)
  223.      * @see #finite(double)
  224.      * @since 3.5
  225.      */
  226.     public static void finite(final double value, final String message, final Object... values) {
  227.         if (Double.isNaN(value) || Double.isInfinite(value)) {
  228.             throw new IllegalArgumentException(getMessage(message, values));
  229.         }
  230.     }

  231.     /**
  232.      * Gets the message using {@link String#format(String, Object...) String.format(message, values)}
  233.      * if the values are not empty, otherwise return the message unformatted.
  234.      * This method exists to allow validation methods declaring a String message and varargs parameters
  235.      * to be used without any message parameters when the message contains special characters,
  236.      * e.g. {@code Validate.isTrue(false, "%Failed%")}.
  237.      *
  238.      * @param message the {@link String#format(String, Object...)} exception message if invalid, not null
  239.      * @param values the optional values for the formatted message
  240.      * @return formatted message using {@link String#format(String, Object...) String.format(message, values)}
  241.      * if the values are not empty, otherwise return the unformatted message.
  242.      */
  243.     private static String getMessage(final String message, final Object... values) {
  244.         return ArrayUtils.isEmpty(values) ? message : String.format(message, values);
  245.     }

  246.     /**
  247.      * Validate that the specified primitive value falls between the two
  248.      * inclusive values specified; otherwise, throws an exception.
  249.      *
  250.      * <pre>Validate.inclusiveBetween(0.1, 2.1, 1.1);</pre>
  251.      *
  252.      * @param start the inclusive start value
  253.      * @param end   the inclusive end value
  254.      * @param value the value to validate
  255.      * @throws IllegalArgumentException if the value falls outside the boundaries (inclusive)
  256.      * @since 3.3
  257.      */
  258.     @SuppressWarnings("boxing")
  259.     public static void inclusiveBetween(final double start, final double end, final double value) {
  260.         // TODO when breaking BC, consider returning value
  261.         if (value < start || value > end) {
  262.             throw new IllegalArgumentException(String.format(DEFAULT_INCLUSIVE_BETWEEN_EX_MESSAGE, value, start, end));
  263.         }
  264.     }

  265.     /**
  266.      * Validate that the specified primitive value falls between the two
  267.      * inclusive values specified; otherwise, throws an exception with the
  268.      * specified message.
  269.      *
  270.      * <pre>Validate.inclusiveBetween(0.1, 2.1, 1.1, "Not in range");</pre>
  271.      *
  272.      * @param start the inclusive start value
  273.      * @param end   the inclusive end value
  274.      * @param value the value to validate
  275.      * @param message the exception message if invalid, not null
  276.      * @throws IllegalArgumentException if the value falls outside the boundaries
  277.      * @since 3.3
  278.      */
  279.     public static void inclusiveBetween(final double start, final double end, final double value, final String message) {
  280.         // TODO when breaking BC, consider returning value
  281.         if (value < start || value > end) {
  282.             throw new IllegalArgumentException(message);
  283.         }
  284.     }

  285.     /**
  286.      * Validate that the specified primitive value falls between the two
  287.      * inclusive values specified; otherwise, throws an exception.
  288.      *
  289.      * <pre>Validate.inclusiveBetween(0, 2, 1);</pre>
  290.      *
  291.      * @param start the inclusive start value
  292.      * @param end   the inclusive end value
  293.      * @param value the value to validate
  294.      * @throws IllegalArgumentException if the value falls outside the boundaries (inclusive)
  295.      * @since 3.3
  296.      */
  297.     @SuppressWarnings("boxing")
  298.     public static void inclusiveBetween(final long start, final long end, final long value) {
  299.         // TODO when breaking BC, consider returning value
  300.         if (value < start || value > end) {
  301.             throw new IllegalArgumentException(String.format(DEFAULT_INCLUSIVE_BETWEEN_EX_MESSAGE, value, start, end));
  302.         }
  303.     }

  304.     /**
  305.      * Validate that the specified primitive value falls between the two
  306.      * inclusive values specified; otherwise, throws an exception with the
  307.      * specified message.
  308.      *
  309.      * <pre>Validate.inclusiveBetween(0, 2, 1, "Not in range");</pre>
  310.      *
  311.      * @param start the inclusive start value
  312.      * @param end   the inclusive end value
  313.      * @param value the value to validate
  314.      * @param message the exception message if invalid, not null
  315.      * @throws IllegalArgumentException if the value falls outside the boundaries
  316.      * @since 3.3
  317.      */
  318.     public static void inclusiveBetween(final long start, final long end, final long value, final String message) {
  319.         // TODO when breaking BC, consider returning value
  320.         if (value < start || value > end) {
  321.             throw new IllegalArgumentException(message);
  322.         }
  323.     }

  324.     /**
  325.      * Validate that the specified argument object fall between the two
  326.      * inclusive values specified; otherwise, throws an exception.
  327.      *
  328.      * <pre>Validate.inclusiveBetween(0, 2, 1);</pre>
  329.      *
  330.      * @param <T> the type of the argument object
  331.      * @param start  the inclusive start value, not null
  332.      * @param end  the inclusive end value, not null
  333.      * @param value  the object to validate, not null
  334.      * @throws IllegalArgumentException if the value falls outside the boundaries
  335.      * @see #inclusiveBetween(Object, Object, Comparable, String, Object...)
  336.      * @since 3.0
  337.      */
  338.     public static <T> void inclusiveBetween(final T start, final T end, final Comparable<T> value) {
  339.         // TODO when breaking BC, consider returning value
  340.         if (value.compareTo(start) < 0 || value.compareTo(end) > 0) {
  341.             throw new IllegalArgumentException(String.format(DEFAULT_INCLUSIVE_BETWEEN_EX_MESSAGE, value, start, end));
  342.         }
  343.     }

  344.     /**
  345.      * Validate that the specified argument object fall between the two
  346.      * inclusive values specified; otherwise, throws an exception with the
  347.      * specified message.
  348.      *
  349.      * <pre>Validate.inclusiveBetween(0, 2, 1, "Not in boundaries");</pre>
  350.      *
  351.      * @param <T> the type of the argument object
  352.      * @param start  the inclusive start value, not null
  353.      * @param end  the inclusive end value, not null
  354.      * @param value  the object to validate, not null
  355.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  356.      * @param values  the optional values for the formatted exception message, null array not recommended
  357.      * @throws IllegalArgumentException if the value falls outside the boundaries
  358.      * @see #inclusiveBetween(Object, Object, Comparable)
  359.      * @since 3.0
  360.      */
  361.     public static <T> void inclusiveBetween(final T start, final T end, final Comparable<T> value, final String message, final Object... values) {
  362.         // TODO when breaking BC, consider returning value
  363.         if (value.compareTo(start) < 0 || value.compareTo(end) > 0) {
  364.             throw new IllegalArgumentException(getMessage(message, values));
  365.         }
  366.     }

  367.     /**
  368.      * Validates that the argument can be converted to the specified class, if not, throws an exception.
  369.      *
  370.      * <p>This method is useful when validating that there will be no casting errors.</p>
  371.      *
  372.      * <pre>Validate.isAssignableFrom(SuperClass.class, object.getClass());</pre>
  373.      *
  374.      * <p>The message format of the exception is &quot;Cannot assign {type} to {superType}&quot;</p>
  375.      *
  376.      * @param superType  the class must be validated against, not null
  377.      * @param type  the class to check, not null
  378.      * @throws IllegalArgumentException if type argument is not assignable to the specified superType
  379.      * @see #isAssignableFrom(Class, Class, String, Object...)
  380.      * @since 3.0
  381.      */
  382.     public static void isAssignableFrom(final Class<?> superType, final Class<?> type) {
  383.         // TODO when breaking BC, consider returning type
  384.         if (type == null || superType == null || !superType.isAssignableFrom(type)) {
  385.             throw new IllegalArgumentException(
  386.                 String.format(DEFAULT_IS_ASSIGNABLE_EX_MESSAGE, ClassUtils.getName(type, "null type"), ClassUtils.getName(superType, "null type")));
  387.         }
  388.     }

  389.     /**
  390.      * Validates that the argument can be converted to the specified class, if not throws an exception.
  391.      *
  392.      * <p>This method is useful when validating if there will be no casting errors.</p>
  393.      *
  394.      * <pre>Validate.isAssignableFrom(SuperClass.class, object.getClass());</pre>
  395.      *
  396.      * <p>The message of the exception is &quot;The validated object can not be converted to the&quot;
  397.      * followed by the name of the class and &quot;class&quot;</p>
  398.      *
  399.      * @param superType  the class must be validated against, not null
  400.      * @param type  the class to check, not null
  401.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  402.      * @param values  the optional values for the formatted exception message, null array not recommended
  403.      * @throws IllegalArgumentException if argument can not be converted to the specified class
  404.      * @see #isAssignableFrom(Class, Class)
  405.      */
  406.     public static void isAssignableFrom(final Class<?> superType, final Class<?> type, final String message, final Object... values) {
  407.         // TODO when breaking BC, consider returning type
  408.         if (!superType.isAssignableFrom(type)) {
  409.             throw new IllegalArgumentException(getMessage(message, values));
  410.         }
  411.     }

  412.     /**
  413.      * Validates that the argument is an instance of the specified class, if not throws an exception.
  414.      *
  415.      * <p>This method is useful when validating according to an arbitrary class</p>
  416.      *
  417.      * <pre>Validate.isInstanceOf(OkClass.class, object);</pre>
  418.      *
  419.      * <p>The message of the exception is &quot;Expected type: {type}, actual: {obj_type}&quot;</p>
  420.      *
  421.      * @param type  the class the object must be validated against, not null
  422.      * @param obj  the object to check, null throws an exception
  423.      * @throws IllegalArgumentException if argument is not of specified class
  424.      * @see #isInstanceOf(Class, Object, String, Object...)
  425.      * @since 3.0
  426.      */
  427.     public static void isInstanceOf(final Class<?> type, final Object obj) {
  428.         // TODO when breaking BC, consider returning obj
  429.         if (!type.isInstance(obj)) {
  430.             throw new IllegalArgumentException(String.format(DEFAULT_IS_INSTANCE_OF_EX_MESSAGE, type.getName(), ClassUtils.getName(obj, "null")));
  431.         }
  432.     }

  433.     /**
  434.      * Validate that the argument is an instance of the specified class; otherwise
  435.      * throwing an exception with the specified message. This method is useful when
  436.      * validating according to an arbitrary class
  437.      *
  438.      * <pre>Validate.isInstanceOf(OkClass.class, object, "Wrong class, object is of class %s",
  439.      *   object.getClass().getName());</pre>
  440.      *
  441.      * @param type  the class the object must be validated against, not null
  442.      * @param obj  the object to check, null throws an exception
  443.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  444.      * @param values  the optional values for the formatted exception message, null array not recommended
  445.      * @throws IllegalArgumentException if argument is not of specified class
  446.      * @see #isInstanceOf(Class, Object)
  447.      * @since 3.0
  448.      */
  449.     public static void isInstanceOf(final Class<?> type, final Object obj, final String message, final Object... values) {
  450.         // TODO when breaking BC, consider returning obj
  451.         if (!type.isInstance(obj)) {
  452.             throw new IllegalArgumentException(getMessage(message, values));
  453.         }
  454.     }

  455.     /**
  456.      * Validate that the argument condition is {@code true}; otherwise
  457.      * throwing an exception. This method is useful when validating according
  458.      * to an arbitrary boolean expression, such as validating a
  459.      * primitive number or using your own custom validation expression.
  460.      *
  461.      * <pre>
  462.      * Validate.isTrue(i &gt; 0);
  463.      * Validate.isTrue(myObject.isOk());</pre>
  464.      *
  465.      * <p>The message of the exception is &quot;The validated expression is
  466.      * false&quot;.</p>
  467.      *
  468.      * @param expression  the boolean expression to check
  469.      * @throws IllegalArgumentException if expression is {@code false}
  470.      * @see #isTrue(boolean, String, long)
  471.      * @see #isTrue(boolean, String, double)
  472.      * @see #isTrue(boolean, String, Object...)
  473.      */
  474.     public static void isTrue(final boolean expression) {
  475.         if (!expression) {
  476.             throw new IllegalArgumentException(DEFAULT_IS_TRUE_EX_MESSAGE);
  477.         }
  478.     }

  479.     /**
  480.      * Validate that the argument condition is {@code true}; otherwise
  481.      * throwing an exception with the specified message. This method is useful when
  482.      * validating according to an arbitrary boolean expression, such as validating a
  483.      * primitive number or using your own custom validation expression.
  484.      *
  485.      * <pre>Validate.isTrue(d &gt; 0.0, "The value must be greater than zero: &#37;s", d);</pre>
  486.      *
  487.      * <p>For performance reasons, the double value is passed as a separate parameter and
  488.      * appended to the exception message only in the case of an error.</p>
  489.      *
  490.      * @param expression  the boolean expression to check
  491.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  492.      * @param value  the value to append to the message when invalid
  493.      * @throws IllegalArgumentException if expression is {@code false}
  494.      * @see #isTrue(boolean)
  495.      * @see #isTrue(boolean, String, long)
  496.      * @see #isTrue(boolean, String, Object...)
  497.      */
  498.     public static void isTrue(final boolean expression, final String message, final double value) {
  499.         if (!expression) {
  500.             throw new IllegalArgumentException(String.format(message, Double.valueOf(value)));
  501.         }
  502.     }

  503.     /**
  504.      * Validate that the argument condition is {@code true}; otherwise
  505.      * throwing an exception with the specified message. This method is useful when
  506.      * validating according to an arbitrary boolean expression, such as validating a
  507.      * primitive number or using your own custom validation expression.
  508.      *
  509.      * <pre>Validate.isTrue(i &gt; 0.0, "The value must be greater than zero: &#37;d", i);</pre>
  510.      *
  511.      * <p>For performance reasons, the long value is passed as a separate parameter and
  512.      * appended to the exception message only in the case of an error.</p>
  513.      *
  514.      * @param expression  the boolean expression to check
  515.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  516.      * @param value  the value to append to the message when invalid
  517.      * @throws IllegalArgumentException if expression is {@code false}
  518.      * @see #isTrue(boolean)
  519.      * @see #isTrue(boolean, String, double)
  520.      * @see #isTrue(boolean, String, Object...)
  521.      */
  522.     public static void isTrue(final boolean expression, final String message, final long value) {
  523.         if (!expression) {
  524.             throw new IllegalArgumentException(String.format(message, Long.valueOf(value)));
  525.         }
  526.     }

  527.     /**
  528.      * Validate that the argument condition is {@code true}; otherwise
  529.      * throwing an exception with the specified message. This method is useful when
  530.      * validating according to an arbitrary boolean expression, such as validating a
  531.      * primitive number or using your own custom validation expression.
  532.      *
  533.      * <pre>{@code
  534.      * Validate.isTrue(i >= min &amp;&amp; i <= max, "The value must be between %d and %d", min, max);}</pre>
  535.      *
  536.      * @param expression  the boolean expression to check
  537.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  538.      * @param values  the optional values for the formatted exception message, null array not recommended
  539.      * @throws IllegalArgumentException if expression is {@code false}
  540.      * @see #isTrue(boolean)
  541.      * @see #isTrue(boolean, String, long)
  542.      * @see #isTrue(boolean, String, double)
  543.      */
  544.     public static void isTrue(final boolean expression, final String message, final Object... values) {
  545.         if (!expression) {
  546.             throw new IllegalArgumentException(getMessage(message, values));
  547.         }
  548.     }

  549.     /**
  550.      * Validate that the specified argument character sequence matches the specified regular
  551.      * expression pattern; otherwise throwing an exception.
  552.      *
  553.      * <pre>Validate.matchesPattern("hi", "[a-z]*");</pre>
  554.      *
  555.      * <p>The syntax of the pattern is the one used in the {@link Pattern} class.</p>
  556.      *
  557.      * @param input  the character sequence to validate, not null
  558.      * @param pattern  the regular expression pattern, not null
  559.      * @throws IllegalArgumentException if the character sequence does not match the pattern
  560.      * @see #matchesPattern(CharSequence, String, String, Object...)
  561.      * @since 3.0
  562.      */
  563.     public static void matchesPattern(final CharSequence input, final String pattern) {
  564.         // TODO when breaking BC, consider returning input
  565.         if (!Pattern.matches(pattern, input)) {
  566.             throw new IllegalArgumentException(String.format(DEFAULT_MATCHES_PATTERN_EX, input, pattern));
  567.         }
  568.     }

  569.     /**
  570.      * Validate that the specified argument character sequence matches the specified regular
  571.      * expression pattern; otherwise throwing an exception with the specified message.
  572.      *
  573.      * <pre>Validate.matchesPattern("hi", "[a-z]*", "%s does not match %s", "hi" "[a-z]*");</pre>
  574.      *
  575.      * <p>The syntax of the pattern is the one used in the {@link Pattern} class.</p>
  576.      *
  577.      * @param input  the character sequence to validate, not null
  578.      * @param pattern  the regular expression pattern, not null
  579.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  580.      * @param values  the optional values for the formatted exception message, null array not recommended
  581.      * @throws IllegalArgumentException if the character sequence does not match the pattern
  582.      * @see #matchesPattern(CharSequence, String)
  583.      * @since 3.0
  584.      */
  585.     public static void matchesPattern(final CharSequence input, final String pattern, final String message, final Object... values) {
  586.         // TODO when breaking BC, consider returning input
  587.         if (!Pattern.matches(pattern, input)) {
  588.             throw new IllegalArgumentException(getMessage(message, values));
  589.         }
  590.     }

  591.     /**
  592.      * Validate that the specified argument iterable is neither
  593.      * {@code null} nor contains any elements that are {@code null};
  594.      * otherwise throwing an exception.
  595.      *
  596.      * <pre>Validate.noNullElements(myCollection);</pre>
  597.      *
  598.      * <p>If the iterable is {@code null}, then the message in the exception
  599.      * is &quot;The validated object is null&quot;.
  600.      *
  601.      * <p>If the array has a {@code null} element, then the message in the
  602.      * exception is &quot;The validated iterable contains null element at index:
  603.      * &quot; followed by the index.</p>
  604.      *
  605.      * @param <T> the iterable type
  606.      * @param iterable  the iterable to check, validated not null by this method
  607.      * @return the validated iterable (never {@code null} method for chaining)
  608.      * @throws NullPointerException if the array is {@code null}
  609.      * @throws IllegalArgumentException if an element is {@code null}
  610.      * @see #noNullElements(Iterable, String, Object...)
  611.      */
  612.     public static <T extends Iterable<?>> T noNullElements(final T iterable) {
  613.         return noNullElements(iterable, DEFAULT_NO_NULL_ELEMENTS_COLLECTION_EX_MESSAGE);
  614.     }

  615.     /**
  616.      * Validate that the specified argument iterable is neither
  617.      * {@code null} nor contains any elements that are {@code null};
  618.      * otherwise throwing an exception with the specified message.
  619.      *
  620.      * <pre>Validate.noNullElements(myCollection, "The collection contains null at position %d");</pre>
  621.      *
  622.      * <p>If the iterable is {@code null}, then the message in the exception
  623.      * is &quot;The validated object is null&quot;.
  624.      *
  625.      * <p>If the iterable has a {@code null} element, then the iteration
  626.      * index of the invalid element is appended to the {@code values}
  627.      * argument.</p>
  628.      *
  629.      * @param <T> the iterable type
  630.      * @param iterable  the iterable to check, validated not null by this method
  631.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  632.      * @param values  the optional values for the formatted exception message, null array not recommended
  633.      * @return the validated iterable (never {@code null} method for chaining)
  634.      * @throws NullPointerException if the array is {@code null}
  635.      * @throws IllegalArgumentException if an element is {@code null}
  636.      * @see #noNullElements(Iterable)
  637.      */
  638.     public static <T extends Iterable<?>> T noNullElements(final T iterable, final String message, final Object... values) {
  639.         Objects.requireNonNull(iterable, "iterable");
  640.         int i = 0;
  641.         for (final Iterator<?> it = iterable.iterator(); it.hasNext(); i++) {
  642.             if (it.next() == null) {
  643.                 final Object[] values2 = ArrayUtils.addAll(values, Integer.valueOf(i));
  644.                 throw new IllegalArgumentException(getMessage(message, values2));
  645.             }
  646.         }
  647.         return iterable;
  648.     }

  649.     /**
  650.      * Validate that the specified argument array is neither
  651.      * {@code null} nor contains any elements that are {@code null};
  652.      * otherwise throwing an exception.
  653.      *
  654.      * <pre>Validate.noNullElements(myArray);</pre>
  655.      *
  656.      * <p>If the array is {@code null}, then the message in the exception
  657.      * is &quot;The validated object is null&quot;.</p>
  658.      *
  659.      * <p>If the array has a {@code null} element, then the message in the
  660.      * exception is &quot;The validated array contains null element at index:
  661.      * &quot; followed by the index.</p>
  662.      *
  663.      * @param <T> the array type
  664.      * @param array  the array to check, validated not null by this method
  665.      * @return the validated array (never {@code null} method for chaining)
  666.      * @throws NullPointerException if the array is {@code null}
  667.      * @throws IllegalArgumentException if an element is {@code null}
  668.      * @see #noNullElements(Object[], String, Object...)
  669.      */
  670.     public static <T> T[] noNullElements(final T[] array) {
  671.         return noNullElements(array, DEFAULT_NO_NULL_ELEMENTS_ARRAY_EX_MESSAGE);
  672.     }

  673.     /**
  674.      * Validate that the specified argument array is neither
  675.      * {@code null} nor contains any elements that are {@code null};
  676.      * otherwise throwing an exception with the specified message.
  677.      *
  678.      * <pre>Validate.noNullElements(myArray, "The array contain null at position %d");</pre>
  679.      *
  680.      * <p>If the array is {@code null}, then the message in the exception
  681.      * is &quot;The validated object is null&quot;.
  682.      *
  683.      * <p>If the array has a {@code null} element, then the iteration
  684.      * index of the invalid element is appended to the {@code values}
  685.      * argument.</p>
  686.      *
  687.      * @param <T> the array type
  688.      * @param array  the array to check, validated not null by this method
  689.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  690.      * @param values  the optional values for the formatted exception message, null array not recommended
  691.      * @return the validated array (never {@code null} method for chaining)
  692.      * @throws NullPointerException if the array is {@code null}
  693.      * @throws IllegalArgumentException if an element is {@code null}
  694.      * @see #noNullElements(Object[])
  695.      */
  696.     public static <T> T[] noNullElements(final T[] array, final String message, final Object... values) {
  697.         Objects.requireNonNull(array, "array");
  698.         for (int i = 0; i < array.length; i++) {
  699.             if (array[i] == null) {
  700.                 final Object[] values2 = ArrayUtils.add(values, Integer.valueOf(i));
  701.                 throw new IllegalArgumentException(getMessage(message, values2));
  702.             }
  703.         }
  704.         return array;
  705.     }

  706.     /**
  707.      * <p>Validate that the specified argument character sequence is
  708.      * neither {@code null}, a length of zero (no characters), empty
  709.      * nor whitespace; otherwise throwing an exception.
  710.      *
  711.      * <pre>Validate.notBlank(myString);</pre>
  712.      *
  713.      * <p>The message in the exception is &quot;The validated character
  714.      * sequence is blank&quot;.
  715.      *
  716.      * @param <T> the character sequence type
  717.      * @param chars  the character sequence to check, validated not null by this method
  718.      * @return the validated character sequence (never {@code null} method for chaining)
  719.      * @throws NullPointerException if the character sequence is {@code null}
  720.      * @throws IllegalArgumentException if the character sequence is blank
  721.      * @see #notBlank(CharSequence, String, Object...)
  722.      * @since 3.0
  723.      */
  724.     public static <T extends CharSequence> T notBlank(final T chars) {
  725.         return notBlank(chars, DEFAULT_NOT_BLANK_EX_MESSAGE);
  726.     }

  727.     /**
  728.      * Validate that the specified argument character sequence is
  729.      * neither {@code null}, a length of zero (no characters), empty
  730.      * nor whitespace; otherwise throwing an exception with the specified
  731.      * message.
  732.      *
  733.      * <pre>Validate.notBlank(myString, "The string must not be blank");</pre>
  734.      *
  735.      * @param <T> the character sequence type
  736.      * @param chars  the character sequence to check, validated not null by this method
  737.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  738.      * @param values  the optional values for the formatted exception message, null array not recommended
  739.      * @return the validated character sequence (never {@code null} method for chaining)
  740.      * @throws NullPointerException if the character sequence is {@code null}
  741.      * @throws IllegalArgumentException if the character sequence is blank
  742.      * @see #notBlank(CharSequence)
  743.      * @since 3.0
  744.      */
  745.     public static <T extends CharSequence> T notBlank(final T chars, final String message, final Object... values) {
  746.         Objects.requireNonNull(chars, toSupplier(message, values));
  747.         if (StringUtils.isBlank(chars)) {
  748.             throw new IllegalArgumentException(getMessage(message, values));
  749.         }
  750.         return chars;
  751.     }

  752.     /**
  753.      * <p>Validate that the specified argument collection is neither {@code null}
  754.      * nor a size of zero (no elements); otherwise throwing an exception.
  755.      *
  756.      * <pre>Validate.notEmpty(myCollection);</pre>
  757.      *
  758.      * <p>The message in the exception is &quot;The validated collection is
  759.      * empty&quot;.
  760.      *
  761.      * @param <T> the collection type
  762.      * @param collection  the collection to check, validated not null by this method
  763.      * @return the validated collection (never {@code null} method for chaining)
  764.      * @throws NullPointerException if the collection is {@code null}
  765.      * @throws IllegalArgumentException if the collection is empty
  766.      * @see #notEmpty(Collection, String, Object...)
  767.      */
  768.     public static <T extends Collection<?>> T notEmpty(final T collection) {
  769.         return notEmpty(collection, DEFAULT_NOT_EMPTY_COLLECTION_EX_MESSAGE);
  770.     }

  771.     /**
  772.      * <p>Validate that the specified argument map is neither {@code null}
  773.      * nor a size of zero (no elements); otherwise throwing an exception.
  774.      *
  775.      * <pre>Validate.notEmpty(myMap);</pre>
  776.      *
  777.      * <p>The message in the exception is &quot;The validated map is
  778.      * empty&quot;.
  779.      *
  780.      * @param <T> the map type
  781.      * @param map  the map to check, validated not null by this method
  782.      * @return the validated map (never {@code null} method for chaining)
  783.      * @throws NullPointerException if the map is {@code null}
  784.      * @throws IllegalArgumentException if the map is empty
  785.      * @see #notEmpty(Map, String, Object...)
  786.      */
  787.     public static <T extends Map<?, ?>> T notEmpty(final T map) {
  788.         return notEmpty(map, DEFAULT_NOT_EMPTY_MAP_EX_MESSAGE);
  789.     }

  790.     /**
  791.      * <p>Validate that the specified argument character sequence is
  792.      * neither {@code null} nor a length of zero (no characters);
  793.      * otherwise throwing an exception with the specified message.
  794.      *
  795.      * <pre>Validate.notEmpty(myString);</pre>
  796.      *
  797.      * <p>The message in the exception is &quot;The validated
  798.      * character sequence is empty&quot;.
  799.      *
  800.      * @param <T> the character sequence type
  801.      * @param chars  the character sequence to check, validated not null by this method
  802.      * @return the validated character sequence (never {@code null} method for chaining)
  803.      * @throws NullPointerException if the character sequence is {@code null}
  804.      * @throws IllegalArgumentException if the character sequence is empty
  805.      * @see #notEmpty(CharSequence, String, Object...)
  806.      */
  807.     public static <T extends CharSequence> T notEmpty(final T chars) {
  808.         return notEmpty(chars, DEFAULT_NOT_EMPTY_CHAR_SEQUENCE_EX_MESSAGE);
  809.     }

  810.     /**
  811.      * <p>Validate that the specified argument collection is neither {@code null}
  812.      * nor a size of zero (no elements); otherwise throwing an exception
  813.      * with the specified message.
  814.      *
  815.      * <pre>Validate.notEmpty(myCollection, "The collection must not be empty");</pre>
  816.      *
  817.      * @param <T> the collection type
  818.      * @param collection  the collection to check, validated not null by this method
  819.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  820.      * @param values  the optional values for the formatted exception message, null array not recommended
  821.      * @return the validated collection (never {@code null} method for chaining)
  822.      * @throws NullPointerException if the collection is {@code null}
  823.      * @throws IllegalArgumentException if the collection is empty
  824.      * @see #notEmpty(Object[])
  825.      */
  826.     public static <T extends Collection<?>> T notEmpty(final T collection, final String message, final Object... values) {
  827.         Objects.requireNonNull(collection, toSupplier(message, values));
  828.         if (collection.isEmpty()) {
  829.             throw new IllegalArgumentException(getMessage(message, values));
  830.         }
  831.         return collection;
  832.     }

  833.     /**
  834.      * Validate that the specified argument map is neither {@code null}
  835.      * nor a size of zero (no elements); otherwise throwing an exception
  836.      * with the specified message.
  837.      *
  838.      * <pre>Validate.notEmpty(myMap, "The map must not be empty");</pre>
  839.      *
  840.      * @param <T> the map type
  841.      * @param map  the map to check, validated not null by this method
  842.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  843.      * @param values  the optional values for the formatted exception message, null array not recommended
  844.      * @return the validated map (never {@code null} method for chaining)
  845.      * @throws NullPointerException if the map is {@code null}
  846.      * @throws IllegalArgumentException if the map is empty
  847.      * @see #notEmpty(Object[])
  848.      */
  849.     public static <T extends Map<?, ?>> T notEmpty(final T map, final String message, final Object... values) {
  850.         Objects.requireNonNull(map, toSupplier(message, values));
  851.         if (map.isEmpty()) {
  852.             throw new IllegalArgumentException(getMessage(message, values));
  853.         }
  854.         return map;
  855.     }

  856.     /**
  857.      * Validate that the specified argument character sequence is
  858.      * neither {@code null} nor a length of zero (no characters);
  859.      * otherwise throwing an exception with the specified message.
  860.      *
  861.      * <pre>Validate.notEmpty(myString, "The string must not be empty");</pre>
  862.      *
  863.      * @param <T> the character sequence type
  864.      * @param chars  the character sequence to check, validated not null by this method
  865.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  866.      * @param values  the optional values for the formatted exception message, null array not recommended
  867.      * @return the validated character sequence (never {@code null} method for chaining)
  868.      * @throws NullPointerException if the character sequence is {@code null}
  869.      * @throws IllegalArgumentException if the character sequence is empty
  870.      * @see #notEmpty(CharSequence)
  871.      */
  872.     public static <T extends CharSequence> T notEmpty(final T chars, final String message, final Object... values) {
  873.         Objects.requireNonNull(chars, toSupplier(message, values));
  874.         if (chars.length() == 0) {
  875.             throw new IllegalArgumentException(getMessage(message, values));
  876.         }
  877.         return chars;
  878.     }

  879.     /**
  880.      * <p>Validate that the specified argument array is neither {@code null}
  881.      * nor a length of zero (no elements); otherwise throwing an exception.
  882.      *
  883.      * <pre>Validate.notEmpty(myArray);</pre>
  884.      *
  885.      * <p>The message in the exception is &quot;The validated array is
  886.      * empty&quot;.
  887.      *
  888.      * @param <T> the array type
  889.      * @param array  the array to check, validated not null by this method
  890.      * @return the validated array (never {@code null} method for chaining)
  891.      * @throws NullPointerException if the array is {@code null}
  892.      * @throws IllegalArgumentException if the array is empty
  893.      * @see #notEmpty(Object[], String, Object...)
  894.      */
  895.     public static <T> T[] notEmpty(final T[] array) {
  896.         return notEmpty(array, DEFAULT_NOT_EMPTY_ARRAY_EX_MESSAGE);
  897.     }

  898.     /**
  899.      * <p>Validate that the specified argument array is neither {@code null}
  900.      * nor a length of zero (no elements); otherwise throwing an exception
  901.      * with the specified message.
  902.      *
  903.      * <pre>Validate.notEmpty(myArray, "The array must not be empty");</pre>
  904.      *
  905.      * @param <T> the array type
  906.      * @param array  the array to check, validated not null by this method
  907.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  908.      * @param values  the optional values for the formatted exception message, null array not recommended
  909.      * @return the validated array (never {@code null} method for chaining)
  910.      * @throws NullPointerException if the array is {@code null}
  911.      * @throws IllegalArgumentException if the array is empty
  912.      * @see #notEmpty(Object[])
  913.      */
  914.     public static <T> T[] notEmpty(final T[] array, final String message, final Object... values) {
  915.         Objects.requireNonNull(array, toSupplier(message, values));
  916.         if (array.length == 0) {
  917.             throw new IllegalArgumentException(getMessage(message, values));
  918.         }
  919.         return array;
  920.     }

  921.     /**
  922.      * Validates that the specified argument is not Not-a-Number (NaN); otherwise
  923.      * throwing an exception.
  924.      *
  925.      * <pre>Validate.notNaN(myDouble);</pre>
  926.      *
  927.      * <p>The message of the exception is &quot;The validated value is not a
  928.      * number&quot;.</p>
  929.      *
  930.      * @param value  the value to validate
  931.      * @throws IllegalArgumentException if the value is not a number
  932.      * @see #notNaN(double, String, Object...)
  933.      * @since 3.5
  934.      */
  935.     public static void notNaN(final double value) {
  936.         notNaN(value, DEFAULT_NOT_NAN_EX_MESSAGE);
  937.     }

  938.     /**
  939.      * Validates that the specified argument is not Not-a-Number (NaN); otherwise
  940.      * throwing an exception with the specified message.
  941.      *
  942.      * <pre>Validate.notNaN(myDouble, "The value must be a number");</pre>
  943.      *
  944.      * @param value  the value to validate
  945.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  946.      * @param values  the optional values for the formatted exception message
  947.      * @throws IllegalArgumentException if the value is not a number
  948.      * @see #notNaN(double)
  949.      * @since 3.5
  950.      */
  951.     public static void notNaN(final double value, final String message, final Object... values) {
  952.         if (Double.isNaN(value)) {
  953.             throw new IllegalArgumentException(getMessage(message, values));
  954.         }
  955.     }

  956.     /**
  957.      * Validate that the specified argument is not {@code null};
  958.      * otherwise throwing an exception.
  959.      *
  960.      * <pre>Validate.notNull(myObject, "The object must not be null");</pre>
  961.      *
  962.      * <p>The message of the exception is &quot;The validated object is
  963.      * null&quot;.
  964.      *
  965.      * @param <T> the object type
  966.      * @param object  the object to check
  967.      * @return the validated object (never {@code null} for method chaining)
  968.      * @throws NullPointerException if the object is {@code null}
  969.      * @see #notNull(Object, String, Object...)
  970.      * @deprecated Use {@link Objects#requireNonNull(Object)}.
  971.      */
  972.     @Deprecated
  973.     public static <T> T notNull(final T object) {
  974.         return notNull(object, DEFAULT_IS_NULL_EX_MESSAGE);
  975.     }

  976.     /**
  977.      * Validate that the specified argument is not {@code null};
  978.      * otherwise throwing an exception with the specified message.
  979.      *
  980.      * <pre>Validate.notNull(myObject, "The object must not be null");</pre>
  981.      *
  982.      * @param <T> the object type
  983.      * @param object  the object to check
  984.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  985.      * @param values  the optional values for the formatted exception message
  986.      * @return the validated object (never {@code null} for method chaining)
  987.      * @throws NullPointerException if the object is {@code null}
  988.      * @see Objects#requireNonNull(Object)
  989.      */
  990.     public static <T> T notNull(final T object, final String message, final Object... values) {
  991.         return Objects.requireNonNull(object, toSupplier(message, values));
  992.     }

  993.     private static Supplier<String> toSupplier(final String message, final Object... values) {
  994.         return () -> getMessage(message, values);
  995.     }

  996.     /**
  997.      * Validates that the index is within the bounds of the argument
  998.      * collection; otherwise throwing an exception.
  999.      *
  1000.      * <pre>Validate.validIndex(myCollection, 2);</pre>
  1001.      *
  1002.      * <p>If the index is invalid, then the message of the exception
  1003.      * is &quot;The validated collection index is invalid: &quot;
  1004.      * followed by the index.</p>
  1005.      *
  1006.      * @param <T> the collection type
  1007.      * @param collection  the collection to check, validated not null by this method
  1008.      * @param index  the index to check
  1009.      * @return the validated collection (never {@code null} for method chaining)
  1010.      * @throws NullPointerException if the collection is {@code null}
  1011.      * @throws IndexOutOfBoundsException if the index is invalid
  1012.      * @see #validIndex(Collection, int, String, Object...)
  1013.      * @since 3.0
  1014.      */
  1015.     public static <T extends Collection<?>> T validIndex(final T collection, final int index) {
  1016.         return validIndex(collection, index, DEFAULT_VALID_INDEX_COLLECTION_EX_MESSAGE, Integer.valueOf(index));
  1017.     }

  1018.     /**
  1019.      * Validates that the index is within the bounds of the argument
  1020.      * character sequence; otherwise throwing an exception.
  1021.      *
  1022.      * <pre>Validate.validIndex(myStr, 2);</pre>
  1023.      *
  1024.      * <p>If the character sequence is {@code null}, then the message
  1025.      * of the exception is &quot;The validated object is
  1026.      * null&quot;.</p>
  1027.      *
  1028.      * <p>If the index is invalid, then the message of the exception
  1029.      * is &quot;The validated character sequence index is invalid: &quot;
  1030.      * followed by the index.</p>
  1031.      *
  1032.      * @param <T> the character sequence type
  1033.      * @param chars  the character sequence to check, validated not null by this method
  1034.      * @param index  the index to check
  1035.      * @return the validated character sequence (never {@code null} for method chaining)
  1036.      * @throws NullPointerException if the character sequence is {@code null}
  1037.      * @throws IndexOutOfBoundsException if the index is invalid
  1038.      * @see #validIndex(CharSequence, int, String, Object...)
  1039.      * @since 3.0
  1040.      */
  1041.     public static <T extends CharSequence> T validIndex(final T chars, final int index) {
  1042.         return validIndex(chars, index, DEFAULT_VALID_INDEX_CHAR_SEQUENCE_EX_MESSAGE, Integer.valueOf(index));
  1043.     }

  1044.     /**
  1045.      * Validates that the index is within the bounds of the argument
  1046.      * collection; otherwise throwing an exception with the specified message.
  1047.      *
  1048.      * <pre>Validate.validIndex(myCollection, 2, "The collection index is invalid: ");</pre>
  1049.      *
  1050.      * <p>If the collection is {@code null}, then the message of the
  1051.      * exception is &quot;The validated object is null&quot;.</p>
  1052.      *
  1053.      * @param <T> the collection type
  1054.      * @param collection  the collection to check, validated not null by this method
  1055.      * @param index  the index to check
  1056.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  1057.      * @param values  the optional values for the formatted exception message, null array not recommended
  1058.      * @return the validated collection (never {@code null} for chaining)
  1059.      * @throws NullPointerException if the collection is {@code null}
  1060.      * @throws IndexOutOfBoundsException if the index is invalid
  1061.      * @see #validIndex(Collection, int)
  1062.      * @since 3.0
  1063.      */
  1064.     public static <T extends Collection<?>> T validIndex(final T collection, final int index, final String message, final Object... values) {
  1065.         Objects.requireNonNull(collection, "collection");
  1066.         if (index < 0 || index >= collection.size()) {
  1067.             throw new IndexOutOfBoundsException(getMessage(message, values));
  1068.         }
  1069.         return collection;
  1070.     }

  1071.     /**
  1072.      * Validates that the index is within the bounds of the argument
  1073.      * character sequence; otherwise throwing an exception with the
  1074.      * specified message.
  1075.      *
  1076.      * <pre>Validate.validIndex(myStr, 2, "The string index is invalid: ");</pre>
  1077.      *
  1078.      * <p>If the character sequence is {@code null}, then the message
  1079.      * of the exception is &quot;The validated object is null&quot;.</p>
  1080.      *
  1081.      * @param <T> the character sequence type
  1082.      * @param chars  the character sequence to check, validated not null by this method
  1083.      * @param index  the index to check
  1084.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  1085.      * @param values  the optional values for the formatted exception message, null array not recommended
  1086.      * @return the validated character sequence (never {@code null} for method chaining)
  1087.      * @throws NullPointerException if the character sequence is {@code null}
  1088.      * @throws IndexOutOfBoundsException if the index is invalid
  1089.      * @see #validIndex(CharSequence, int)
  1090.      * @since 3.0
  1091.      */
  1092.     public static <T extends CharSequence> T validIndex(final T chars, final int index, final String message, final Object... values) {
  1093.         Objects.requireNonNull(chars, "chars");
  1094.         if (index < 0 || index >= chars.length()) {
  1095.             throw new IndexOutOfBoundsException(getMessage(message, values));
  1096.         }
  1097.         return chars;
  1098.     }

  1099.     /**
  1100.      * Validates that the index is within the bounds of the argument
  1101.      * array; otherwise throwing an exception.
  1102.      *
  1103.      * <pre>Validate.validIndex(myArray, 2);</pre>
  1104.      *
  1105.      * <p>If the array is {@code null}, then the message of the exception
  1106.      * is &quot;The validated object is null&quot;.</p>
  1107.      *
  1108.      * <p>If the index is invalid, then the message of the exception is
  1109.      * &quot;The validated array index is invalid: &quot; followed by the
  1110.      * index.</p>
  1111.      *
  1112.      * @param <T> the array type
  1113.      * @param array  the array to check, validated not null by this method
  1114.      * @param index  the index to check
  1115.      * @return the validated array (never {@code null} for method chaining)
  1116.      * @throws NullPointerException if the array is {@code null}
  1117.      * @throws IndexOutOfBoundsException if the index is invalid
  1118.      * @see #validIndex(Object[], int, String, Object...)
  1119.      * @since 3.0
  1120.      */
  1121.     public static <T> T[] validIndex(final T[] array, final int index) {
  1122.         return validIndex(array, index, DEFAULT_VALID_INDEX_ARRAY_EX_MESSAGE, Integer.valueOf(index));
  1123.     }

  1124.     /**
  1125.      * Validates that the index is within the bounds of the argument
  1126.      * array; otherwise throwing an exception with the specified message.
  1127.      *
  1128.      * <pre>Validate.validIndex(myArray, 2, "The array index is invalid: ");</pre>
  1129.      *
  1130.      * <p>If the array is {@code null}, then the message of the exception
  1131.      * is &quot;The validated object is null&quot;.</p>
  1132.      *
  1133.      * @param <T> the array type
  1134.      * @param array  the array to check, validated not null by this method
  1135.      * @param index  the index to check
  1136.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  1137.      * @param values  the optional values for the formatted exception message, null array not recommended
  1138.      * @return the validated array (never {@code null} for method chaining)
  1139.      * @throws NullPointerException if the array is {@code null}
  1140.      * @throws IndexOutOfBoundsException if the index is invalid
  1141.      * @see #validIndex(Object[], int)
  1142.      * @since 3.0
  1143.      */
  1144.     public static <T> T[] validIndex(final T[] array, final int index, final String message, final Object... values) {
  1145.         Objects.requireNonNull(array, "array");
  1146.         if (index < 0 || index >= array.length) {
  1147.             throw new IndexOutOfBoundsException(getMessage(message, values));
  1148.         }
  1149.         return array;
  1150.     }

  1151.     /**
  1152.      * Validate that the stateful condition is {@code true}; otherwise
  1153.      * throwing an exception. This method is useful when validating according
  1154.      * to an arbitrary boolean expression, such as validating a
  1155.      * primitive number or using your own custom validation expression.
  1156.      *
  1157.      * <pre>
  1158.      * Validate.validState(field &gt; 0);
  1159.      * Validate.validState(this.isOk());</pre>
  1160.      *
  1161.      * <p>The message of the exception is &quot;The validated state is
  1162.      * false&quot;.</p>
  1163.      *
  1164.      * @param expression  the boolean expression to check
  1165.      * @throws IllegalStateException if expression is {@code false}
  1166.      * @see #validState(boolean, String, Object...)
  1167.      * @since 3.0
  1168.      */
  1169.     public static void validState(final boolean expression) {
  1170.         if (!expression) {
  1171.             throw new IllegalStateException(DEFAULT_VALID_STATE_EX_MESSAGE);
  1172.         }
  1173.     }

  1174.     /**
  1175.      * Validate that the stateful condition is {@code true}; otherwise
  1176.      * throwing an exception with the specified message. This method is useful when
  1177.      * validating according to an arbitrary boolean expression, such as validating a
  1178.      * primitive number or using your own custom validation expression.
  1179.      *
  1180.      * <pre>Validate.validState(this.isOk(), "The state is not OK: %s", myObject);</pre>
  1181.      *
  1182.      * @param expression  the boolean expression to check
  1183.      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
  1184.      * @param values  the optional values for the formatted exception message, null array not recommended
  1185.      * @throws IllegalStateException if expression is {@code false}
  1186.      * @see #validState(boolean)
  1187.      * @since 3.0
  1188.      */
  1189.     public static void validState(final boolean expression, final String message, final Object... values) {
  1190.         if (!expression) {
  1191.             throw new IllegalStateException(getMessage(message, values));
  1192.         }
  1193.     }

  1194.     /**
  1195.      * Constructs a new instance. This class should not normally be instantiated.
  1196.      */
  1197.     public Validate() {
  1198.     }
  1199. }