Interface FilterValue


  • public interface FilterValue
    • Method Detail

      • getValue

        Object getValue()
      • coerceValue

        Object coerceValue​(Class<?> type)
        Parameters:
        type - The type to coerce into the parameter type.
        Returns:
        the value coerced to the given parameter type. For instance, if the value is a String, passing java.lang.Number as the type would return a Number parsed from the value.
      • asList

        static List<FilterValue> asList​(Object... values)
      • asList

        static List<FilterValue> asList​(List<?> values)