Interface InListParameter


@ThreadSafe public interface InListParameter
Encapsulates a parameter intended for SQL IN list expansion.

Standard instances may be constructed via Parameters.inList(java.util.Collection), Parameters.inList(Object[]), or the primitive-array overloads.

Implementations should be threadsafe.

Since:
4.0.0
Author:
Mark Allen
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the elements to be expanded into SQL IN list placeholders.
  • Method Details

    • getElements

      Gets the elements to be expanded into SQL IN list placeholders. Elements must be non-empty.
      Returns:
      the elements for the IN list