Tabnine Logo
AbstractComplexBinding.getProperties
Code IndexAdd Tabnine to your IDE (free)

How to use
getProperties
method
in
org.geotools.xml.AbstractComplexBinding

Best Java code snippets using org.geotools.xml.AbstractComplexBinding.getProperties (Showing top 2 results out of 315)

origin: org.geotools.xsd/gt-xsd-filter

public List getProperties(Object object) throws Exception {
  //special hack for Functions, while not mandated by the spec we handle it 
  // here
  BinarySpatialOperator operator = (BinarySpatialOperator) object;
  if ( operator.getExpression2() instanceof Function ) {
    ArrayList props = new ArrayList();
    props.add( new Object[]{ OGC.Function, operator.getExpression2() } ); 
    return props;
  }
  
  return super.getProperties(object);
}

origin: org.geotools/gt2-xml-filter

  public List getProperties(Object object) throws Exception {
    //special hack for Functions, while not mandated by the spec we handle it 
    // here
    BinarySpatialOperator operator = (BinarySpatialOperator) object;

    if (operator.getExpression2() instanceof Function) {
      ArrayList props = new ArrayList();
      props.add(new Object[] { OGC.Function, operator.getExpression2() });

      return props;
    }

    return super.getProperties(object);
  }
}
org.geotools.xmlAbstractComplexBindinggetProperties

Javadoc

Subclasses should override this method if need be, the default implementation returns null.

Note that this method only needs to be implemented for schema types which are open-ended in which the contents are not specifically specified by the schema.

Popular methods of AbstractComplexBinding

  • parse
    Subclasses should override this method, the default implementation return null.
  • getProperty
    Subclasses should override this method if need be, the default implementation returns null.
  • initialize

Popular in Java

  • Creating JSON documents from java classes using gson
  • runOnUiThread (Activity)
  • onCreateOptionsMenu (Activity)
  • getSharedPreferences (Context)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • JTable (javax.swing)
  • Runner (org.openjdk.jmh.runner)
  • 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