congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
Touches
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: deegree/deegree3

  break;
case TOUCHES:
  propertyName = ( (Touches) operator ).getPropName();
  geometry = ( (Touches) operator ).getGeometry();
  break;
case WITHIN:
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.touches( transformedLiteral );
    }
  }
  return false;
}
origin: deegree/deegree3

case TOUCHES:
  Touches touches = (Touches) op;
  return new Touches( copy( touches.getPropName() ), touches.getGeometry() );
case WITHIN:
  Within within = (Within) op;
origin: deegree/deegree3

  break;
case TOUCHES:
  geometry = ( (Touches) operator ).getGeometry();
  break;
case WITHIN:
origin: deegree/deegree3

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

Touches touches = (Touches) op;
builder.add( propNameExpr ).add( ".STTouches(" );
builder.add( toProtoSQL( touches.getGeometry(), storageCRS, srid ) );
builder.add( ")=1" );
break;
origin: deegree/deegree3

  return new Overlaps( (Expression) os[0], (Geometry) os[1] );
case TOUCHES:
  return new Touches( (Expression) os[0], (Geometry) os[1] );
case WITHIN:
  return new Within( (Expression) os[0], (Geometry) os[1] );
origin: deegree/deegree3

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

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

spatialOperator = new Touches( param1, param2 );
break;
org.deegree.filter.spatialTouches

Javadoc

TODO add documentation here

Most used methods

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

Popular in Java

  • Start an intent from android
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getExternalFilesDir (Context)
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Option (scala)
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now