Tabnine Logo
ProfileTargetingExpression$ExpressionToken.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.milyn.cdr.ProfileTargetingExpression$ExpressionToken
constructor

Best Java code snippets using org.milyn.cdr.ProfileTargetingExpression$ExpressionToken.<init> (Showing top 4 results out of 315)

origin: smooks/smooks

public ProfileTargetingExpression(String expression) {
  if(expression == null || expression.trim().equals("")) {
    throw new IllegalArgumentException("null or empty 'expression' arg.");
  }
  this.expression = expression;
  
  String[] tokens = expression.split(" AND ");
  expressionTokens = new ExpressionToken[tokens.length];
  for(int i = 0; i < tokens.length; i++) {
    String token = tokens[i].trim();
    expressionTokens[i] = new ExpressionToken(token);
  }
}

origin: org.virtuslab/milyn-smooks-core

public ProfileTargetingExpression(String expression) {
  if(expression == null || expression.trim().equals("")) {
    throw new IllegalArgumentException("null or empty 'expression' arg.");
  }
  this.expression = expression;
  
  String[] tokens = expression.split(" AND ");
  expressionTokens = new ExpressionToken[tokens.length];
  for(int i = 0; i < tokens.length; i++) {
    String token = tokens[i].trim();
    expressionTokens[i] = new ExpressionToken(token);
  }
}

origin: org.milyn/milyn-smooks-core

public ProfileTargetingExpression(String expression) {
  if(expression == null || expression.trim().equals("")) {
    throw new IllegalArgumentException("null or empty 'expression' arg.");
  }
  this.expression = expression;
  
  String[] tokens = expression.split(" AND ");
  expressionTokens = new ExpressionToken[tokens.length];
  for(int i = 0; i < tokens.length; i++) {
    String token = tokens[i].trim();
    expressionTokens[i] = new ExpressionToken(token);
  }
}

origin: org.milyn/milyn-smooks-all

public ProfileTargetingExpression(String expression) {
  if(expression == null || expression.trim().equals("")) {
    throw new IllegalArgumentException("null or empty 'expression' arg.");
  }
  this.expression = expression;
  
  String[] tokens = expression.split(" AND ");
  expressionTokens = new ExpressionToken[tokens.length];
  for(int i = 0; i < tokens.length; i++) {
    String token = tokens[i].trim();
    expressionTokens[i] = new ExpressionToken(token);
  }
}

org.milyn.cdrProfileTargetingExpression$ExpressionToken<init>

Javadoc

Private constructor.

Popular methods of ProfileTargetingExpression$ExpressionToken

  • getSpecificity
    Get the specificity of this token with respect to the supplied device. The following outlines the al
  • isMatch
    Is the profile specified in this token is a member of the supplied profile set.
  • isNegated
    Is this token negated. Is the token prefixed with "not:".
  • isWildcard
    Is the token a wildcard token. Is the token equal to "*".

Popular in Java

  • Creating JSON documents from java classes using gson
  • getResourceAsStream (ClassLoader)
  • getContentResolver (Context)
  • compareTo (BigDecimal)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • JFrame (javax.swing)
  • Top Vim plugins
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