Codota Logo
WKTUtilities.appendName
Code IndexAdd Codota to your IDE (free)

How to use
appendName
method
in
org.apache.sis.internal.referencing.WKTUtilities

Best Java code snippets using org.apache.sis.internal.referencing.WKTUtilities.appendName (Showing top 19 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ScheduledThreadPoolExecutor s =
  • Codota Iconnew ScheduledThreadPoolExecutor(corePoolSize)
  • Codota IconThreadFactory threadFactory;new ScheduledThreadPoolExecutor(corePoolSize, threadFactory)
  • Codota IconString str;new ScheduledThreadPoolExecutor(1, new ThreadFactoryBuilder().setNameFormat(str).build())
  • Smart code suggestions by Codota
}
origin: org.apache.sis.core/sis-referencing

/** Formats this {@code Conversion} element. */
@Override protected String formatTo(final Formatter formatter) {
  WKTUtilities.appendName(conversion, formatter, null);
  formatter.newLine();
  append(formatter);
  return WKTKeywords.Conversion;
}
origin: apache/sis

/** Formats this {@code Conversion} element. */
@Override protected String formatTo(final Formatter formatter) {
  WKTUtilities.appendName(conversion, formatter, null);
  formatter.newLine();
  append(formatter);
  return WKTKeywords.Conversion;
}
origin: apache/sis

/**
 * Appends a {@linkplain ParameterValueGroup group of parameters} in a {@code Param_MT[…]} element.
 *
 * @param  parameters  the parameter to append to the WKT, or {@code null} if none.
 * @param  formatter   the formatter where to append the parameter.
 */
public static void appendParamMT(final ParameterValueGroup parameters, final Formatter formatter) {
  if (parameters != null) {
    appendName(parameters.getDescriptor(), formatter, ElementKind.PARAMETER);
    append(parameters, formatter);
  }
}
origin: org.apache.sis.core/sis-referencing

/**
 * Appends a {@linkplain ParameterValueGroup group of parameters} in a {@code Param_MT[…]} element.
 *
 * @param  parameters  the parameter to append to the WKT, or {@code null} if none.
 * @param  formatter   the formatter where to append the parameter.
 */
public static void appendParamMT(final ParameterValueGroup parameters, final Formatter formatter) {
  if (parameters != null) {
    appendName(parameters.getDescriptor(), formatter, ElementKind.PARAMETER);
    append(parameters, formatter);
  }
}
origin: org.apache.sis.core/sis-referencing

WKTUtilities.appendName(this, formatter, ElementKind.forType(getClass()));
return null;
origin: apache/sis

WKTUtilities.appendName(this, formatter, ElementKind.forType(getClass()));
return null;
origin: org.apache.sis.core/sis-referencing

  @Override protected String formatTo(final Formatter formatter) {
    WKTUtilities.appendName(conversion, formatter, null);
    formatter.newLine();
    formatter.append(DefaultOperationMethod.castOrCopy(conversion.getMethod()));
    formatter.newLine();
    for (final GeneralParameterValue param : conversion.getParameterValues().values()) {
      WKTUtilities.append(param, formatter);
    }
    return WKTKeywords.DerivingConversion;
  }
});
origin: apache/sis

  @Override protected String formatTo(final Formatter formatter) {
    WKTUtilities.appendName(conversion, formatter, null);
    formatter.newLine();
    formatter.append(DefaultOperationMethod.castOrCopy(conversion.getMethod()));
    formatter.newLine();
    for (final GeneralParameterValue param : conversion.getParameterValues().values()) {
      WKTUtilities.append(param, formatter);
    }
    return WKTKeywords.DerivingConversion;
  }
});
origin: apache/sis

WKTUtilities.appendName(this, formatter, null);
final Convention convention = formatter.getConvention();
final List<? extends CoordinateReferenceSystem> crs;
origin: org.apache.sis.core/sis-referencing

WKTUtilities.appendName(this, formatter, null);
final Convention convention = formatter.getConvention();
final List<? extends CoordinateReferenceSystem> crs;
origin: apache/sis

/**
 * Formats a pseudo-<cite>Well Known Text</cite> (WKT) representation for this object.
 * The format produced by this method is non-standard and may change in any future Apache SIS version.
 *
 * @param  formatter  the formatter where to format the inner content of this pseudo-WKT element.
 * @return an arbitrary keyword for the pseudo-WKT element.
 */
@Debug
@Override
protected String formatTo(final Formatter formatter) {
  WKTUtilities.appendName(this, formatter, ElementKind.NAME);
  if (theme != null) {
    formatter.newLine();
    formatter.append(new SubElement("Theme", theme));
  }
  if (overallOwner != null) {
    formatter.newLine();
    formatter.append(new SubElement("Owner", overallOwner.getName()));
  }
  for (final AbstractLocationType type : locationTypes) {
    formatter.newLine();
    formatter.append(new SubElement("LocationType", type.getName()));
  }
  return "ReferenceSystemUsingIdentifiers";
}
origin: apache/sis

protected String formatTo(final Formatter formatter) {
  final ParameterDescriptor<T> descriptor = getDescriptor();  // Gives to users a chance to override this property.
  WKTUtilities.appendName(descriptor, formatter, ElementKind.PARAMETER);
  final Convention convention = formatter.getConvention();
  final boolean isWKT1 = convention.majorVersion() == 1;
origin: org.apache.sis.core/sis-referencing

protected String formatTo(final Formatter formatter) {
  final ParameterDescriptor<T> descriptor = getDescriptor();  // Gives to users a chance to override this property.
  WKTUtilities.appendName(descriptor, formatter, ElementKind.PARAMETER);
  final Convention convention = formatter.getConvention();
  final boolean isWKT1 = convention.majorVersion() == 1;
origin: org.apache.sis.core/sis-referencing

WKTUtilities.appendName(this, formatter, null);
final Convention convention = formatter.getConvention();
final boolean isWKT1 = (convention.majorVersion() == 1);
origin: apache/sis

WKTUtilities.appendName(this, formatter, null);
final Convention convention = formatter.getConvention();
final boolean isWKT1 = (convention.majorVersion() == 1);
origin: org.apache.sis.core/sis-referencing

WKTUtilities.appendName(this, formatter, null);
final Convention    convention  = formatter.getConvention();
final boolean       isWKT1      = (convention.majorVersion() == 1);
origin: apache/sis

WKTUtilities.appendName(this, formatter, null);
final Convention    convention  = formatter.getConvention();
final boolean       isWKT1      = (convention.majorVersion() == 1);
origin: org.apache.sis.core/sis-referencing

WKTUtilities.appendName(this, formatter, null);
CoordinateSystem cs = getCoordinateSystem();
final Convention convention = formatter.getConvention();
origin: apache/sis

WKTUtilities.appendName(this, formatter, null);
CoordinateSystem cs = getCoordinateSystem();
final Convention convention = formatter.getConvention();
org.apache.sis.internal.referencingWKTUtilitiesappendName

Javadoc

Appends the name of the given object to the formatter.

Popular methods of WKTUtilities

  • appendParamMT
    Appends a ParameterValueGroup in a Param_MT[…] element.
  • suggestFractionDigits
    Suggests an amount of fraction digits to use for formatting numbers in each column of the given sequ
  • toType
    Returns the WKT type of the given interface. For CoordinateSystem base type, the returned value shal
  • append
    Appends a ParameterValue in a PARAMETER[…] element. If the supplied parameter is actually a Paramete
  • isEPSG
    Returns true if the given parameter is defined in the EPSG code space. We handle EPSG parameters in
  • toFormattable
    Returns the given prime meridian as a formattable object.

Popular in Java

  • Reading from database using SQL prepared statement
  • startActivity (Activity)
  • getContentResolver (Context)
  • orElseThrow (Optional)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • MessageFormat (java.text)
    MessageFormat provides a means to produce concatenated messages in language-neutral way. Use this to
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • IsNull (org.hamcrest.core)
    Is the value null?
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now