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

How to use
Disjoint
in
org.deegree.filter.spatial

Best Java code snippets using org.deegree.filter.spatial.Disjoint (Showing top 10 results out of 315)

origin: deegree/deegree3

  break;
case DISJOINT:
  propertyName = ( (Disjoint) operator ).getPropName();
  geometry = ( (Disjoint) operator ).getGeometry();
  break;
case DWITHIN:
origin: deegree/deegree3

@Override
public <T> boolean evaluate( T obj, XPathEvaluator<T> xpathEvaluator )
            throws FilterEvaluationException {
  for ( TypedObjectNode paramValue : propName.evaluate( obj, xpathEvaluator ) ) {
    Geometry geom = checkGeometryOrNull( paramValue );
    if ( geom != null ) {
      Geometry transformedLiteral = getCompatibleGeometry( geom, geometry );
      return geom.isDisjoint( transformedLiteral );
    }
  }
  return false;
}
origin: deegree/deegree3

case DISJOINT:
  Disjoint disjoint = (Disjoint) op;
  return new Disjoint( copy( disjoint.getPropName() ), disjoint.getGeometry() );
case DWITHIN:
  DWithin dwithin = (DWithin) op;
origin: deegree/deegree3

  break;
case DISJOINT:
  geometry = ( (Disjoint) operator ).getGeometry();
  break;
case DWITHIN:
origin: deegree/deegree3

spatialOperator = new Disjoint( param1, param2 );
break;
origin: deegree/deegree3

Disjoint disjoint = (Disjoint) op;
builder.add( propNameExpr ).add( ".STDisjoint(" );
builder.add( toProtoSQL( disjoint.getGeometry(), storageCRS, srid ) );
builder.add( ")=1" );
break;
origin: deegree/deegree3

  return new Crosses( (Expression) os[0], (Geometry) os[1] );
case DISJOINT:
  return new Disjoint( (Expression) os[0], (Geometry) os[1] );
case DWITHIN:
  DWithin d = (DWithin) o;
origin: deegree/deegree3

builder.add( toProtoSQL( disjoint.getGeometry(), storageCRS, srid ) );
builder.add( ")" );
break;
origin: deegree/deegree3

spatialOperator = new Disjoint( param1, param2 );
break;
origin: deegree/deegree3

spatialOperator = new Disjoint( param1, param2 );
break;
org.deegree.filter.spatialDisjoint

Javadoc

TODO add documentation here

Most used methods

  • getGeometry
  • <init>
  • getPropName
  • checkGeometryOrNull
  • getCompatibleGeometry

Popular in Java

  • Parsing JSON documents to java classes using gson
  • requestLocationUpdates (LocationManager)
  • notifyDataSetChanged (ArrayAdapter)
  • runOnUiThread (Activity)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • Collectors (java.util.stream)
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Best plugins for Eclipse
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