Uses of Class
com.kingsrook.qqq.backend.core.exceptions.QValueException
Packages that use QValueException
Package
Description
-
Uses of QValueException in com.kingsrook.qqq.backend.core.model.metadata.fields.functions
Methods in com.kingsrook.qqq.backend.core.model.metadata.fields.functions that throw QValueExceptionModifier and TypeMethodDescriptionFieldFunctionType.apply(FieldFunction fieldFunction, QRecord record) Applies this function to the given record's field value and returns the result.default SerializableFieldFunctionType.applyForSorting(FieldFunction fieldFunction, QRecord record) Applies this function for sort-order purposes. -
Uses of QValueException in com.kingsrook.qqq.backend.core.model.metadata.fields.functions.implementations
Methods in com.kingsrook.qqq.backend.core.model.metadata.fields.functions.implementations that throw QValueExceptionModifier and TypeMethodDescriptionWeekdayOfDateFunction.apply(FieldFunction fieldFunction, QRecord record) Returns the ISO-8601 day-of-week value (Monday=1, Sunday=7) for the date field's value, or null if the value is null.WeekdayOfDateTimeFunction.apply(FieldFunction fieldFunction, QRecord record) Converts the datetime field value to the specified time zone and returns the ISO-8601 day-of-week value, or null if the value is null.WeekdayOfDateFunction.applyForSorting(FieldFunction fieldFunction, QRecord record) Returns the day-of-week value adjusted for sort ordering.WeekdayOfDateTimeFunction.applyForSorting(FieldFunction fieldFunction, QRecord record) Returns the day-of-week value adjusted for sort ordering. -
Uses of QValueException in com.kingsrook.qqq.backend.core.utils
Methods in com.kingsrook.qqq.backend.core.utils that throw QValueExceptionModifier and TypeMethodDescriptionstatic BigDecimalValueUtils.getValueAsBigDecimal(Object value) Type-safely make a BigDecimal from any Object.static IntegerValueUtils.getValueAsInteger(Object value) Type-safely make an Integer from any Object.static LocalDateValueUtils.getValueAsLocalDate(Object value) Type-safely make a LocalDate from any Object.static LocalDateTimeValueUtils.getValueAsLocalDateTime(Object value) Type-safely make a LocalDateTime from any Object.static LongValueUtils.getValueAsLong(Object value) Type-safely make an Long from any Object. -
Uses of QValueException in com.kingsrook.qqq.backend.javalin
Methods in com.kingsrook.qqq.backend.javalin that throw QValueExceptionModifier and TypeMethodDescriptionstatic IntegerQJavalinUtils.integerFormParam(io.javalin.http.Context context, String name) Returns Integer if context has a valid int form parameter by the given name, Returns null if no param (or empty value).static IntegerQJavalinUtils.integerQueryParam(io.javalin.http.Context context, String name) Returns Integer if context has a valid int query parameter by the given name, Returns null if no param (or empty value).static booleanQJavalinUtils.queryParamIsTrue(io.javalin.http.Context context, String name) Returns true iff context has a valid query parameter by the given name, with a value of "true".