Interface Log

All Superinterfaces:
org.jboss.logging.BasicLogger
All Known Implementing Classes:
Log_$logger

@MessageLogger(projectCode="ISPN") public interface Log extends org.jboss.logging.BasicLogger
Log abstraction for the query DSL. For this module, message ids ranging from 14801 to 15000 inclusively have been reserved.
Since:
8.2
Author:
anistor@redhat.com
  • Method Details

    • argumentCannotBeNull

      @Message(value="Argument cannot be null", id=14801) IllegalArgumentException argumentCannotBeNull()
    • argumentMustBeComparable

      @Message(value="\'%s\' must be an instance of java.lang.Comparable", id=14802) IllegalArgumentException argumentMustBeComparable(String argName)
    • parameterNameCannotBeNulOrEmpty

      @Message(value="Parameter name cannot be null or empty", id=14803) IllegalArgumentException parameterNameCannotBeNulOrEmpty()
    • queryDoesNotHaveParameters

      @Message(value="Query does not have parameters", id=14804) IllegalStateException queryDoesNotHaveParameters()
    • parameterNotFound

      @Message(value="No parameter named \'%s\' was found", id=14805) IllegalArgumentException parameterNotFound(String paramName)
    • parametersNotFound

      @Message(value="No parameters named \'%s\' were found", id=14806) IllegalArgumentException parametersNotFound(String unknownParams)
    • listOfValuesForInCannotBeNulOrEmpty

      @Message(value="The list of values for \'in(..)\' cannot be null or empty", id=14807) IllegalArgumentException listOfValuesForInCannotBeNulOrEmpty()
    • operatorWasAlreadySpecified

      @Message(value="operator was already specified", id=14808) IllegalStateException operatorWasAlreadySpecified()
    • conditionWasCreatedByAnotherFactory

      @Message(value="The given condition was created by another factory", id=14809) IllegalArgumentException conditionWasCreatedByAnotherFactory()
    • conditionIsAlreadyInUseByAnotherBuilder

      @Message(value="The given condition is already in use by another builder", id=14810) IllegalArgumentException conditionIsAlreadyInUseByAnotherBuilder()
    • cannotUseOperatorAgain

      @Message(value="Sentence already started. Cannot use \'%s\' again.", id=14811) IllegalStateException cannotUseOperatorAgain(String operatorName)
    • argumentCannotBeNull

      @Message(value="%s cannot be null", id=14812) IllegalArgumentException argumentCannotBeNull(String argName)
    • queryAlreadyBelongsToAnotherBuilder

      @Message(value="This query already belongs to another query builder", id=14813) IllegalStateException queryAlreadyBelongsToAnotherBuilder()
    • subQueryDoesNotBelongToAParentQueryBuilder

      @Message(value="This sub-query does not belong to a parent query builder yet", id=14814) IllegalStateException subQueryDoesNotBelongToAParentQueryBuilder()
    • groupingCannotBeNullOrEmpty

      @Message(value="Grouping cannot be null or empty", id=14815) IllegalArgumentException groupingCannotBeNullOrEmpty()
    • groupingCanBeSpecifiedOnlyOnce

      @Message(value="Grouping can be specified only once", id=14816) IllegalStateException groupingCanBeSpecifiedOnlyOnce()
    • expectingCollectionOrArray

      @Message(value="Expecting a java.lang.Collection or an array of java.lang.Object", id=14817) IllegalArgumentException expectingCollectionOrArray()
    • incompleteSentence

      @Message(value="Incomplete sentence. Missing attribute path or operator.", id=14818) IllegalStateException incompleteSentence()
    • incompleteCondition

      @Message(value="Cannot visit an incomplete condition.", id=14819) IllegalStateException incompleteCondition()
    • conditionNotFoundInParent

      @Message(value="Old child condition not found in parent condition", id=14820) IllegalStateException conditionNotFoundInParent()
    • projectionCannotBeNullOrEmpty

      @Message(value="Projection cannot be null or empty", id=14821) IllegalArgumentException projectionCannotBeNullOrEmpty()
    • projectionCanBeSpecifiedOnlyOnce

      @Message(value="Projection can be specified only once", id=14822) IllegalStateException projectionCanBeSpecifiedOnlyOnce()
    • maxResultMustBeGreaterThanZero

      @Message(value="maxResults must be greater than 0", id=14823) IllegalArgumentException maxResultMustBeGreaterThanZero()
    • startOffsetCannotBeLessThanZero

      @Message(value="startOffset cannot be less than 0", id=14824) IllegalArgumentException startOffsetCannotBeLessThanZero()
    • queryParameterNotSet

      @Message(value="Query parameter \'%s\' was not set", id=14825) IllegalStateException queryParameterNotSet(String paramName)
    • leftAndRightCannotBeTheSame

      @Message(value="Left and right condition cannot be the same", id=14826) IllegalArgumentException leftAndRightCannotBeTheSame()
    • warnPerfSortedNonIndexed

      @LogMessage(level=WARN) @Message(value="Distributed sort not supported for non-indexed query \'%s\'. Consider using an index for optimal performance.", id=14827) void warnPerfSortedNonIndexed(String query)