Tabnine Logo
JsonLocation._appendSourceDesc
Code IndexAdd Tabnine to your IDE (free)

How to use
_appendSourceDesc
method
in
com.fasterxml.jackson.core.JsonLocation

Best Java code snippets using com.fasterxml.jackson.core.JsonLocation._appendSourceDesc (Showing top 6 results out of 315)

origin: redisson/redisson

/**
 * Accessor for getting a textual description of source reference
 * (Object returned by {@link #getSourceRef()}), as included in
 * description returned by {@link #toString()}.
 *<p>
 * NOTE: not added as a "getter" to prevent it from getting serialized.
 *
 * @since 2.9
 */
public String sourceDescription() {
  return _appendSourceDesc(new StringBuilder(100)).toString();
}
origin: redisson/redisson

@Override
public String toString()
{
  StringBuilder sb = new StringBuilder(80);
  sb.append("[Source: ");
  _appendSourceDesc(sb);
  sb.append("; line: ");
  sb.append(_lineNr);
  sb.append(", column: ");
  sb.append(_columnNr);
  sb.append(']');
  return sb.toString();
}
origin: FasterXML/jackson-core

/**
 * Accessor for getting a textual description of source reference
 * (Object returned by {@link #getSourceRef()}), as included in
 * description returned by {@link #toString()}.
 *<p>
 * NOTE: not added as a "getter" to prevent it from getting serialized.
 */
public String sourceDescription() {
  return _appendSourceDesc(new StringBuilder(100)).toString();
}
origin: FasterXML/jackson-core

@Override
public String toString()
{
  StringBuilder sb = new StringBuilder(80);
  sb.append("[Source: ");
  _appendSourceDesc(sb);
  sb.append("; line: ");
  sb.append(_lineNr);
  sb.append(", column: ");
  sb.append(_columnNr);
  sb.append(']');
  return sb.toString();
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

/**
 * Accessor for getting a textual description of source reference
 * (Object returned by {@link #getSourceRef()}), as included in
 * description returned by {@link #toString()}.
 *<p>
 * NOTE: not added as a "getter" to prevent it from getting serialized.
 *
 * @since 2.9
 */
public String sourceDescription() {
  return _appendSourceDesc(new StringBuilder(100)).toString();
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

@Override
public String toString()
{
  StringBuilder sb = new StringBuilder(80);
  sb.append("[Source: ");
  _appendSourceDesc(sb);
  sb.append("; line: ");
  sb.append(_lineNr);
  sb.append(", column: ");
  sb.append(_columnNr);
  sb.append(']');
  return sb.toString();
}
com.fasterxml.jackson.coreJsonLocation_appendSourceDesc

Popular methods of JsonLocation

  • getLineNr
  • getColumnNr
  • <init>
  • getCharOffset
  • getByteOffset
  • toString
  • getSourceRef
    Reference to the original resource being read, if one available. For example, when a parser has been
  • _append
  • equals
  • hashCode

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getApplicationContext (Context)
  • getSystemService (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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