Tabnine Logo
Log.getSequenceDefinitionsNotAllowedException
Code IndexAdd Tabnine to your IDE (free)

How to use
getSequenceDefinitionsNotAllowedException
method
in
org.hibernate.validator.internal.util.logging.Log

Best Java code snippets using org.hibernate.validator.internal.util.logging.Log.getSequenceDefinitionsNotAllowedException (Showing top 2 results out of 315)

origin: org.hibernate.validator/hibernate-validator

/**
 * Recursively add inherited (groups defined on superclasses).
 *
 * @param group the group for which the inherited groups need to be added to {@code expandedGroups}
 * @param expandedGroups The list into which to add all groups
 */
private void addInheritedGroups(Group group, Set<Group> expandedGroups) {
  for ( Class<?> inheritedGroup : group.getDefiningClass().getInterfaces() ) {
    if ( isGroupSequence( inheritedGroup ) ) {
      throw LOG.getSequenceDefinitionsNotAllowedException();
    }
    Group g = new Group( inheritedGroup );
    expandedGroups.add( g );
    addInheritedGroups( g, expandedGroups );
  }
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.hibernate-validator

/**
 * Recursively add inherited (groups defined on superclasses).
 *
 * @param group the group for which the inherited groups need to be added to {@code expandedGroups}
 * @param expandedGroups The list into which to add all groups
 */
private void addInheritedGroups(Group group, Set<Group> expandedGroups) {
  for ( Class<?> inheritedGroup : group.getDefiningClass().getInterfaces() ) {
    if ( isGroupSequence( inheritedGroup ) ) {
      throw log.getSequenceDefinitionsNotAllowedException();
    }
    Group g = new Group( inheritedGroup );
    expandedGroups.add( g );
    addInheritedGroups( g, expandedGroups );
  }
}
org.hibernate.validator.internal.util.loggingLoggetSequenceDefinitionsNotAllowedException

Popular methods of Log

  • getInvalidRegularExpressionException
  • getInvalidLengthForFractionPartException
  • getInvalidLengthForIntegerPartException
  • getLengthCannotBeNegativeException
  • getMaxCannotBeNegativeException
  • getMinCannotBeNegativeException
  • debug
  • debugf
  • errorInExpressionLanguage
  • evaluatingExpressionLanguageExpressionCausedException
  • getAnnotationDoesNotContainAParameterException
  • getAtLeastOneCustomMessageMustBeCreatedException
  • getAnnotationDoesNotContainAParameterException,
  • getAtLeastOneCustomMessageMustBeCreatedException,
  • getAtLeastOneGroupHasToBeSpecifiedException,
  • getAttemptToSpecifyAnArrayWhereSingleValueIsExpectedException,
  • getBeanClassHasAlreadyBeConfiguredViaProgrammaticApiException,
  • getBeanClassMustBePartOfRedefinedDefaultGroupSequenceException,
  • getBeanDoesNotContainConstructorException,
  • getBeanDoesNotContainMethodException,
  • getBeanDoesNotContainTheFieldException,
  • getBeanDoesNotContainThePropertyException

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getApplicationContext (Context)
  • requestLocationUpdates (LocationManager)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • JFrame (javax.swing)
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now