Codota Logo
PropertyIsLike.getExpression
Code IndexAdd Codota to your IDE (free)

How to use
getExpression
method
in
org.deegree.filter.comparison.PropertyIsLike

Best Java code snippets using org.deegree.filter.comparison.PropertyIsLike.getExpression (Showing top 6 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Gson g =
  • Codota Iconnew Gson()
  • Codota IconGsonBuilder gsonBuilder;gsonBuilder.create()
  • Codota Iconnew GsonBuilder().create()
  • Smart code suggestions by Codota
}
origin: deegree/deegree3

private static void export( PropertyIsLike operator, XMLStreamWriter writer )
            throws XMLStreamException {
  writer.writeStartElement( FES_20_NS, "PropertyIsLike" );
  writer.writeAttribute( "wildCard", operator.getWildCard() );
  writer.writeAttribute( "singleChar", operator.getSingleChar() );
  writer.writeAttribute( "escapeChar", operator.getEscapeChar() );
  export( operator.getExpression(), writer );
  export( operator.getPattern(), writer );
  writer.writeEndElement();
}
origin: deegree/deegree3

private SQLOperation toProtoSql( PropertyIsLike op, String literal )
            throws UnmappableException, FilterEvaluationException {
  String escape = "" + op.getEscapeChar();
  String wildCard = "" + op.getWildCard();
  String singleChar = "" + op.getSingleChar();
  SQLExpression propName = toProtoSQL( op.getExpression() );
  IsLikeString specialString = new IsLikeString( literal, wildCard, singleChar, escape );
  String sqlEncoded = specialString.toSQL( !op.isMatchCase() );
  if ( propName.isMultiValued() ) {
    // TODO escaping of pipe symbols
    sqlEncoded = "%|" + sqlEncoded + "|%";
  }
  return getOperationFromBuilder( op, propName, sqlEncoded );
}
origin: deegree/deegree3

  writer.writeAttribute( "matchCase", "" + isLikeOperator.isMatchCase() );
export( isLikeOperator.getExpression(), writer );
export( isLikeOperator.getPattern(), writer );
break;
origin: deegree/deegree3

String singleChar = "" + op.getSingleChar();
SQLExpression propName = toProtoSQL( op.getExpression() );
origin: deegree/deegree3

String singleChar = "" + op.getSingleChar();
SQLExpression propName = toProtoSQL( op.getExpression() );
origin: deegree/deegree3

case PROPERTY_IS_LIKE:
  PropertyIsLike pil = (PropertyIsLike) op;
  return new PropertyIsLike( copy( pil.getExpression() ), copyExpression( pil.getPattern(), values ),
                pil.getWildCard(), pil.getSingleChar(), pil.getEscapeChar(),
                pil.isMatchCase(), pil.getMatchAction() );
org.deegree.filter.comparisonPropertyIsLikegetExpression

Popular methods of PropertyIsLike

  • getEscapeChar
  • getPattern
  • getSingleChar
  • getWildCard
  • isMatchCase
  • <init>
  • getMatchAction
  • getPrimitiveValues
  • matches
    Checks if a given String matches a pattern that is a sequence of: * standard characters * wildca

Popular in Java

  • Making http post requests using okhttp
  • runOnUiThread (Activity)
  • addToBackStack (FragmentTransaction)
  • onRequestPermissionsResult (Fragment)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • ImageIO (javax.imageio)
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement.A servlet is a small Java program that runs within
  • JComboBox (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now