Tabnine Logo
DefaultOperationMethod.castOrCopy
Code IndexAdd Tabnine to your IDE (free)

How to use
castOrCopy
method
in
org.apache.sis.referencing.operation.DefaultOperationMethod

Best Java code snippets using org.apache.sis.referencing.operation.DefaultOperationMethod.castOrCopy (Showing top 12 results out of 315)

origin: Geomatys/geotoolkit

protected Object writeReplace() throws ObjectStreamException {
  return org.apache.sis.referencing.operation.DefaultOperationMethod.castOrCopy(this);
}
origin: Geomatys/geotoolkit

  protected Object readResolve() throws ObjectStreamException {
    return org.apache.sis.referencing.operation.DefaultOperationMethod.castOrCopy(this);
  }
}
origin: apache/sis

/**
 * Invoked by JAXB at marshalling time for getting the actual element to write
 * inside the {@code <gml:OperationMethod>} XML element.
 * This is the value or a copy of the value given in argument to the {@code wrap} method.
 *
 * @return the element to be marshalled.
 */
@XmlElement(name = "OperationMethod")
public DefaultOperationMethod getElement() {
  return DefaultOperationMethod.castOrCopy(metadata);
}
origin: org.apache.sis.core/sis-referencing

/**
 * Invoked by JAXB at marshalling time for getting the actual element to write
 * inside the {@code <gml:OperationMethod>} XML element.
 * This is the value or a copy of the value given in argument to the {@code wrap} method.
 *
 * @return the element to be marshalled.
 */
@XmlElement(name = "OperationMethod")
public DefaultOperationMethod getElement() {
  return DefaultOperationMethod.castOrCopy(metadata);
}
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

return DefaultOperationMethod.castOrCopy((OperationMethod) object);
origin: org.apache.sis.core/sis-referencing

return DefaultOperationMethod.castOrCopy((OperationMethod) object);
origin: apache/sis

formatter.append(DefaultOperationMethod.castOrCopy(conversion.getMethod()));
formatter.newLine();
for (final GeneralParameterValue param : conversion.getParameterValues().values()) {
origin: org.apache.sis.core/sis-referencing

formatter.append(DefaultOperationMethod.castOrCopy(conversion.getMethod()));
formatter.newLine();
for (final GeneralParameterValue param : conversion.getParameterValues().values()) {
origin: apache/sis

formatter.append(DefaultOperationMethod.castOrCopy(method));
ParameterValueGroup parameters;
try {
origin: org.apache.sis.core/sis-referencing

formatter.append(DefaultOperationMethod.castOrCopy(method));
ParameterValueGroup parameters;
try {
org.apache.sis.referencing.operationDefaultOperationMethodcastOrCopy

Javadoc

Returns a SIS operation method implementation with the same values than the given arbitrary implementation. If the given object is null, then null is returned. Otherwise if the given object is already a SIS implementation, then the given object is returned unchanged. Otherwise a new SIS implementation is created and initialized to the attribute values of the given object.

Popular methods of DefaultOperationMethod

  • <init>
    Constructs a new operation method with the same values than the specified one except the dimensions.
  • getOperationType
    Returns the base interface of the CoordinateOperation instances that use this method. The base Coord
  • getParameters
    Returns the set of parameters.Departure from the ISO 19111 standard: this property is mandatory acco
  • isHeuristicMatchForName
  • redimension
    Returns an operation method with different dimensions, if we are allowed to change dimensionality. T
  • equals
    Compares this operation method with the specified object for equality. If the mode argument value is
  • getFormula
    Formula(s) or procedure used by this operation method. This may be a reference to a publication. Not
  • getIdentifiers
  • getName
  • getProperties
    Work around for RFE #4093999 in Sun's bug database ("Relax constraint on placement of this()/super()
  • getSourceDimensions
    Number of dimensions in the source CRS of this operation method. May be null if unknown, as in an Af
  • getTargetDimensions
    Number of dimensions in the target CRS of this operation method. May be null if unknown, as in an Af
  • getSourceDimensions,
  • getTargetDimensions,
  • hashCode,
  • updateDescriptors

Popular in Java

  • Updating database using SQL prepared statement
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getResourceAsStream (ClassLoader)
  • putExtra (Intent)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Notification (javax.management)
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Best IntelliJ plugins
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