Class CollQueryFunctions

java.lang.Object
com.querydsl.collections.CollQueryFunctions

public final class CollQueryFunctions extends Object
CollQueryFunctions defines function implementation for use in ColQueryTemplates
Author:
tiwe
  • Method Details

    • equals

      public static boolean equals(Object o1, Object o2)
    • compareTo

      public static <T extends Comparable<? super T>> int compareTo(T c1, T c2)
    • between

      public static <A extends Comparable<? super A>> boolean between(A a, A b, A c)
    • cot

      public static double cot(double x)
    • coth

      public static double coth(double x)
    • degrees

      public static double degrees(double x)
    • radians

      public static double radians(double x)
    • log

      public static double log(double x, int y)
    • coalesce

      @Nullable public static <T> T coalesce(T... args)
    • nullif

      public static <T> T nullif(T first, T second)
    • getYearMonth

      public static int getYearMonth(Date date)
    • getDayOfMonth

      public static int getDayOfMonth(Date date)
    • getDayOfWeek

      public static int getDayOfWeek(Date date)
    • getDayOfYear

      public static int getDayOfYear(Date date)
    • getHour

      public static int getHour(Date date)
    • getMilliSecond

      public static int getMilliSecond(Date date)
    • getMinute

      public static int getMinute(Date date)
    • getMonth

      public static int getMonth(Date date)
    • getSecond

      public static int getSecond(Date date)
    • getWeek

      public static int getWeek(Date date)
    • getYear

      public static int getYear(Date date)
    • getYearWeek

      public static int getYearWeek(Date date)
    • leftJoin

      public static <T> Collection<T> leftJoin(Collection<T> coll)
    • aggregate

      public static Number aggregate(Collection<Number> source, com.querydsl.core.types.Expression<?> expr, com.querydsl.core.types.Operator aggregator)
    • like

      public static boolean like(String str, String like)
    • like

      public static boolean like(String str, String like, char escape)
    • likeIgnoreCase

      public static boolean likeIgnoreCase(String str, String like)
    • likeIgnoreCase

      public static boolean likeIgnoreCase(String str, String like, char escape)
    • get

      public static <T> T get(Object parent, String f)