Examples of LinkFunction


Examples of com.basho.riak.client.mapreduce.LinkFunction

     * @return current MapReduceBuilder instance. This is done so multiple calls
     *         to map, reduce, and link can be chained together a la
     *         StringBuffer
     */
    public MapReduceBuilder link(String bucket, String tag, boolean keep) {
        this.addPhase(MapReduceBuilder.Types.LINK, new LinkFunction(bucket, tag), keep);
        return this;
    }
View Full Code Here

Examples of net.sf.jpluck.plucker.functions.LinkFunction

            }
            continue;
          }
        }
        if (function instanceof LinkFunction) {
          LinkFunction linkFunction = (LinkFunction) function;
          linkFunction.setURIResolver(textRecord.document);
        }
        if (function instanceof LinkEnd && !linkStarted) {
          continue;
        }
        if (function instanceof LinkStart) {
          LinkFunction linkFunction = (LinkFunction) function;
          boolean brokenLink = !textRecord.document.contains(URIUtil.removeAnchor(linkFunction.getURI()));
          if (brokenLink && textRecord.document.isRemoveUnresolvedLinks()) {
            linkStarted = false;
            continue;
          } else {
            linkStarted = true;
View Full Code Here

Examples of org.dmg.pmml._40.LINKFUNCTION

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setLinkFunction(LINKFUNCTION newLinkFunction) {
    LINKFUNCTION oldLinkFunction = linkFunction;
    linkFunction = newLinkFunction == null ? LINK_FUNCTION_EDEFAULT : newLinkFunction;
    boolean oldLinkFunctionESet = linkFunctionESet;
    linkFunctionESet = true;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, _40Package.GENERAL_REGRESSION_MODEL_TYPE__LINK_FUNCTION, oldLinkFunction, linkFunction, !oldLinkFunctionESet));
View Full Code Here

Examples of org.dmg.pmml._40.LINKFUNCTION

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void unsetLinkFunction() {
    LINKFUNCTION oldLinkFunction = linkFunction;
    boolean oldLinkFunctionESet = linkFunctionESet;
    linkFunction = LINK_FUNCTION_EDEFAULT;
    linkFunctionESet = false;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.UNSET, _40Package.GENERAL_REGRESSION_MODEL_TYPE__LINK_FUNCTION, oldLinkFunction, LINK_FUNCTION_EDEFAULT, oldLinkFunctionESet));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.