Tabnine Logo
SpatialParameters.getMasks
Code IndexAdd Tabnine to your IDE (free)

How to use
getMasks
method
in
org.eclipse.persistence.expressions.spatial.SpatialParameters

Best Java code snippets using org.eclipse.persistence.expressions.spatial.SpatialParameters.getMasks (Showing top 3 results out of 315)

origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * build a String describing this set of parameters that can be used in conjunction with an Oracle Spatial function
 * @return
 */
public String getParameterString() {
  if (getParams() != null) {
    return getParams();
  }
  
  StringWriter writer = new StringWriter();
  boolean hasParams = false;
  hasParams = writeParam(writer, DISTANCE_PARAM, getDistance(), hasParams);
  hasParams = writeParam(writer, MAX_RES_PARAM, getMaxResolution(), hasParams);
  hasParams = writeParam(writer, MIN_RES_PARAM, getMinResolution(), hasParams);
  hasParams = writeParam(writer, UNIT_PARAM, getUnits(), hasParams);
  hasParams = writeParam(writer, MASK_PARAM, getMasks(), hasParams);
  hasParams = writeParam(writer, QUERYTYPE_PARAM, getQueryType(), hasParams);
  return hasParams ? writer.toString() : null;
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * PUBLIC:
 * build a String describing this set of parameters that can be used in conjunction with an Oracle Spatial function
 * @return
 */
public String getParameterString() {
  if (getParams() != null) {
    return getParams();
  }
  
  StringWriter writer = new StringWriter();
  boolean hasParams = false;
  hasParams = writeParam(writer, DISTANCE_PARAM, getDistance(), hasParams);
  hasParams = writeParam(writer, MAX_RES_PARAM, getMaxResolution(), hasParams);
  hasParams = writeParam(writer, MIN_RES_PARAM, getMinResolution(), hasParams);
  hasParams = writeParam(writer, UNIT_PARAM, getUnits(), hasParams);
  hasParams = writeParam(writer, MASK_PARAM, getMasks(), hasParams);
  hasParams = writeParam(writer, QUERYTYPE_PARAM, getQueryType(), hasParams);
  return hasParams ? writer.toString() : null;
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * build a String describing this set of parameters that can be used in conjunction with an Oracle Spatial function
 * @return
 */
public String getParameterString() {
  if (getParams() != null) {
    return getParams();
  }
  StringWriter writer = new StringWriter();
  boolean hasParams = false;
  hasParams = writeParam(writer, DISTANCE_PARAM, getDistance(), hasParams);
  hasParams = writeParam(writer, MAX_RES_PARAM, getMaxResolution(), hasParams);
  hasParams = writeParam(writer, MIN_RES_PARAM, getMinResolution(), hasParams);
  hasParams = writeParam(writer, UNIT_PARAM, getUnits(), hasParams);
  hasParams = writeParam(writer, MASK_PARAM, getMasks(), hasParams);
  hasParams = writeParam(writer, QUERYTYPE_PARAM, getQueryType(), hasParams);
  return hasParams ? writer.toString() : null;
}
org.eclipse.persistence.expressions.spatialSpatialParametersgetMasks

Popular methods of SpatialParameters

  • getDistance
  • getMaxResolution
  • getMinResolution
  • getParameterString
    PUBLIC: build a String describing this set of parameters that can be used in conjunction with an Ora
  • getParams
  • getQueryType
  • getUnits
  • setParams
    PUBLIC: Set the PARAMS (String) value. If this value is set then no other param values will be used.
  • writeParam
    INTERNAL: Write the parameter onto the StringWriter being used to construct the params string. Only

Popular in Java

  • Making http post requests using okhttp
  • putExtra (Intent)
  • getSupportFragmentManager (FragmentActivity)
  • getContentResolver (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • JTable (javax.swing)
  • 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