Tabnine Logo
SInstance.getValidationErrors
Code IndexAdd Tabnine to your IDE (free)

How to use
getValidationErrors
method
in
org.opensingular.form.SInstance

Best Java code snippets using org.opensingular.form.SInstance.getValidationErrors (Showing top 5 results out of 315)

origin: org.opensingular/singular-form-core

public boolean hasValidationErrors() {
  return !getValidationErrors().isEmpty();
}
origin: org.opensingular/form-core

public boolean hasValidationErrors() {
  return !getValidationErrors().isEmpty();
}
origin: org.opensingular/singular-form-core

public Collection<ValidationError> getNestedValidationErrors() {
  List<ValidationError> errors = new ArrayList<>();
  SInstances.visit(this, (i, v) -> errors.addAll(i.getValidationErrors()));
  return errors;
}
origin: org.opensingular/form-core

public Collection<IValidationError> getNestedValidationErrors() {
  List<IValidationError> errors = new ArrayList<>();
  SInstances.visit(this, (i, v) -> errors.addAll(i.getValidationErrors()));
  return errors;
}
origin: org.opensingular/singular-form-core

public IterableAssert<ValidationError> assertThatValidationErrors(){
  return assertThat(getTarget().getValidationErrors());
}
org.opensingular.formSInstancegetValidationErrors

Popular methods of SInstance

  • getDocument
    Retorna o documento ao qual pertence a instância atual.
  • getType
  • toStringDisplay
  • getId
    Retorna um ID único dentre as instâncias do mesmo documento. Um ID nunca é reutilizado, mesmo se a i
  • getAttributeValue
  • findNearest
    Returns the nearest SInstance for the given type in the form SInstance tree. The search is performed
  • setId
    Apenas para uso nas soluções de persistencia. Não deve ser usado fora dessa situação.
  • clearInstance
    Apaga os valores associados a instância. Se for uma lista ou composto, apaga os valores em profundid
  • getName
  • getParent
  • getValue
  • isEmptyOfData
    Retorna true se a instancia não conter nenhuma informação diferente de null. A pesquisa é feita em
  • getValue,
  • isEmptyOfData,
  • asAtr,
  • asAtrAnnotation,
  • asAtrProvider,
  • attachEventCollector,
  • detachEventCollector,
  • getDictionary,
  • getField,
  • getPathFromRoot

Popular in Java

  • Updating database using SQL prepared statement
  • addToBackStack (FragmentTransaction)
  • putExtra (Intent)
  • onCreateOptionsMenu (Activity)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • 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