congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
FieldMapper.clone
Code IndexAdd Tabnine to your IDE (free)

How to use
clone
method
in
org.apache.stanbol.entityhub.servicesapi.mapping.FieldMapper

Best Java code snippets using org.apache.stanbol.entityhub.servicesapi.mapping.FieldMapper.clone (Showing top 7 results out of 315)

origin: apache/stanbol

/**
 * Getter for the base mappings used by this Cache. Modifications on the
 * returned object do not have any influence on the mappings, because this
 * method returns a clone. Use {@link #setBaseMappings(FieldMapper)} to
 * change the used base mappings. However make sure you understand the
 * implications of changing the base mappings as described in the
 * documentation of the setter method
 *
 * @return A clone of the base mappings or <code>null</code> if no base
 *         mappings are defined
 */
@Override
public final FieldMapper getBaseMappings() {
  return baseMapper == null ? null : baseMapper.clone();
}
origin: org.apache.stanbol/org.apache.stanbol.entityhub.core

/**
 * Getter for the base mappings used by this Cache. Modifications on the
 * returned object do not have any influence on the mappings, because this
 * method returns a clone. Use {@link #setBaseMappings(FieldMapper)} to
 * change the used base mappings. However make sure you understand the
 * implications of changing the base mappings as described in the
 * documentation of the setter method
 *
 * @return A clone of the base mappings or <code>null</code> if no base
 *         mappings are defined
 */
@Override
public final FieldMapper getBaseMappings() {
  return baseMapper == null ? null : baseMapper.clone();
}
origin: org.apache.stanbol/org.apache.stanbol.entityhub.core

/**
 * Getter for the additional mappings used by this Cache. Modifications on the
 * returned object do not have any influence on the mappings, because this
 * method returns a clone. Use {@link #setAdditionalMappings(FieldMapper)} to
 * change the used additional mappings. However make sure you understand the
 * implications of changing the base mappings as described in the
 * documentation of the setter method
 *
 * @return A clone of the additional mappings or <code>null</code> if no
 *         additional mappings are defined
 */
@Override
public final FieldMapper getAdditionalMappings() {
  return additionalMapper == null ? null : additionalMapper.clone();
}
origin: apache/stanbol

/**
 * Getter for the additional mappings used by this Cache. Modifications on the
 * returned object do not have any influence on the mappings, because this
 * method returns a clone. Use {@link #setAdditionalMappings(FieldMapper)} to
 * change the used additional mappings. However make sure you understand the
 * implications of changing the base mappings as described in the
 * documentation of the setter method
 *
 * @return A clone of the additional mappings or <code>null</code> if no
 *         additional mappings are defined
 */
@Override
public final FieldMapper getAdditionalMappings() {
  return additionalMapper == null ? null : additionalMapper.clone();
}
origin: apache/stanbol

  fieldMapper = dereferencer.getFieldMapper().clone();
} else {
  fieldMapper = null;
origin: org.apache.stanbol/org.apache.stanbol.entityhub.core

FieldMapper mapper = this.fieldMapper.clone();
for(FieldMapping siteMapping : siteMapper.getMappings()){
  mapper.addMapping(siteMapping);
origin: apache/stanbol

FieldMapper mapper = this.fieldMapper.clone();
for(FieldMapping siteMapping : siteMapper.getMappings()){
  mapper.addMapping(siteMapping);
org.apache.stanbol.entityhub.servicesapi.mappingFieldMapperclone

Javadoc

Creates a clone of this FieldMapper instance with shallow copies of the FieldMapping instances

Popular methods of FieldMapper

  • applyMappings
    Uses the state of the source representation and the configured mappings to update the state of the t
  • addMapping
    Adds a FieldMapping.
  • getMappings
    Getter for the unmodifiable collection of all mappings

Popular in Java

  • Parsing JSON documents to java classes using gson
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setScale (BigDecimal)
  • startActivity (Activity)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • Option (scala)
  • Top PhpStorm 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