Class BinSpecification

java.lang.Object
com.skava.inventory.entity.criteria.bin.BinSpecification
All Implemented Interfaces:
Serializable, org.springframework.data.jpa.domain.Specification<Bin>

public class BinSpecification extends Object implements org.springframework.data.jpa.domain.Specification<Bin>
The Class BinSpecification
Author:
Infosys Equinox
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    jakarta.persistence.criteria.Predicate
    toPredicate(jakarta.persistence.criteria.Root<Bin> root, jakarta.persistence.criteria.CriteriaQuery<?> query, jakarta.persistence.criteria.CriteriaBuilder builder)
    This method will build a predicate object based on the given crieteria This implementation supports the below operations 1. greater than 2. less than 3. equals 4. wildcard pattern matching

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.springframework.data.jpa.domain.Specification

    and, or
  • Constructor Details

  • Method Details

    • toPredicate

      public jakarta.persistence.criteria.Predicate toPredicate(jakarta.persistence.criteria.Root<Bin> root, jakarta.persistence.criteria.CriteriaQuery<?> query, jakarta.persistence.criteria.CriteriaBuilder builder)
      This method will build a predicate object based on the given crieteria This implementation supports the below operations 1. greater than 2. less than 3. equals 4. wildcard pattern matching
      Specified by:
      toPredicate in interface org.springframework.data.jpa.domain.Specification<Bin>
      See Also:
      • Specification.toPredicate(jakarta.persistence.criteria.Root, jakarta.persistence.criteria.CriteriaQuery, jakarta.persistence.criteria.CriteriaBuilder)