Tabnine Logo
ValidationResult.appendTextTo
Code IndexAdd Tabnine to your IDE (free)

How to use
appendTextTo
method
in
org.dcm4che3.data.ValidationResult

Best Java code snippets using org.dcm4che3.data.ValidationResult.appendTextTo (Showing top 3 results out of 315)

origin: dcm4che/dcm4che

private void appendTextTo(int level, Attributes attrs, StringBuilder sb) {
  if (notAllowedAttributes != null)
    appendTextTo(level, attrs, "Not allowed Attributes:", notAllowedAttributes, sb);
  if (missingAttributes != null)
    appendTextTo(level, attrs, "Missing Attributes:", missingAttributes, sb);
  if (missingAttributeValues != null)
    appendTextTo(level, attrs, "Missing Attribute Values:", missingAttributeValues, sb);
  if (invalidAttributeValues != null)
    appendInvalidAttributeValues(level, attrs, "Invalid Attribute Values:", sb);
}
origin: dcm4che/dcm4che

public String asText(Attributes attrs) {
  if (isValid())
    return "VALID";
  StringBuilder sb = new StringBuilder();
  appendTextTo(0, attrs, sb);
  return sb.substring(0, sb.length()-1);
}
origin: dcm4che/dcm4che

sb.append("Invalid Item ").append(i+1).append(':')
 .append(StringUtils.LINE_SEPARATOR);
itemResult.appendTextTo(level+1, seq.get(i), sb);
org.dcm4che3.dataValidationResultappendTextTo

Popular methods of ValidationResult

  • isValid
  • <init>
  • hasInvalidAttributeValues
  • hasMissingAttributeValues
  • hasMissingAttributes
  • hasNotAllowedAttributes
  • tagsOfInvalidAttributeValues
  • tagsOfMissingAttributeValues
  • tagsOfMissingAttributes
  • tagsOfNotAllowedAttributes
  • addInvalidAttributeValue
  • addMissingAttribute
  • addInvalidAttributeValue,
  • addMissingAttribute,
  • addMissingAttributeValue,
  • addNotAllowedAttribute,
  • appendAttribute,
  • appendIODRef,
  • appendInvalidAttributeValues,
  • appendPrefixTo,
  • asText

Popular in Java

  • Reading from database using SQL prepared statement
  • setScale (BigDecimal)
  • onCreateOptionsMenu (Activity)
  • putExtra (Intent)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Github Copilot alternatives
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