Examples of Direction

@author Portet to jme3 by user starcom "Paul Kashofer Austria" @see ImageGraphics
  • com.limelight.input.gamepad.SourceComponent.Direction
  • com.persistit.Key.Direction
  • com.sap.hadoop.windowing.query2.specification.WindowFrameSpec.Direction
  • com.sencha.gxt.core.client.Style.Direction
  • com.sk89q.worldedit.util.Direction
  • com.tinkerpop.blueprints.Direction
  • com.tinkerpop.gremlin.structure.Direction
  • dbfit.util.Direction
  • edu.cmu.cs.stage3.alice.core.Direction
  • edu.stanford.nlp.trees.CollinsRelation.Direction
  • etch.compiler.opt.Direction
    Option which sets the direction of a message ([client->]server, [server->]client, or both.
  • games.stendhal.common.Direction
  • maze.model.Direction
  • models.enumeration.Direction
  • net.sf.minuteProject.configuration.bean.model.data.constant.Direction
  • org.apache.abdera.i18n.text.Bidi.Direction
  • org.apache.etch.compiler.opt.Direction
    Option which sets the direction of a message ([client->]server, [server->]client, or both.
  • org.apache.hadoop.gateway.filter.rewrite.api.UrlRewriter.Direction
  • org.apache.hadoop.hive.ql.parse.WindowingSpec.Direction
  • org.apache.jackrabbit.api.security.user.QueryBuilder.Direction
  • org.apache.metamodel.query.OrderByItem.Direction
  • org.apache.pivot.wtk.Direction
  • org.apache.tapestry.spec.Direction
    Represents different types of parameters. Currently only in and custom are supported, but this will likely change when Tapestry supports out parameters is some form (that reflects form style processing). @author Howard Lewis Ship @version $Id: Direction.java 243791 2004-02-19 17:38:13Z hlship $ @since 2.0.3
  • org.apache.woden.wsdl20.enumeration.Direction
    This class defines the values of the {direction} property of InterfaceMessageReference and InterfaceFaultReference. This property indicates whether a message is coming "in" to the service or going "out" from the service.

    The property is represented in XML by the message or fault reference element's tag name:

    This class uses the typesafe enum pattern. Applications should use the public static final constants defined in this class to specify or to evaluate direction.

    Examples:

     msgRef.setDirection(Direction.IN); if(msgRef.getDirection() == Direction.IN) ... if(msgRef.getDirection().equals(Direction.IN)) ... Note that == and .equals() are equivalent. 
    TODO if extensibility is required, chg ctor to protected @author jkaputin@apache.org
  • org.apache.woden.wsdl20.extensions.rpc.Direction
    Direction is a typesafe enumeration of the four possible values, #in, #out, #inout, and #return. @author Arthur Ryman (ryman@ca.ibm.com)
  • org.chromium.debug.core.model.BreakpointSynchronizer.Direction
  • org.eclipse.egit.core.synchronize.ThreeWayDiffEntry.Direction
  • org.freerealm.map.Direction
    @author Deniz ARIKAN
  • org.gnubridge.core.Direction
  • org.gocha.collection.graph.Path.Direction
  • org.japura.gui.Gradient.Direction
  • org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem.Direction
  • org.jdesktop.swingx.JXBusyLabel.Direction
  • org.jemmy.interfaces.Caret.Direction
  • org.jpacman.framework.model.Direction
  • org.kite9.diagram.position.Direction
    Formats are used to turn sentences into diagram objects. For example, "Cathy goes shopping" could be represented on in ADL as glyphs for Cathy and Shopping, and an Arrow for goes. The format manages this conversion. @author moffatr
  • org.maltparserx.core.syntaxgraph.headrules.Direction
  • org.meb.speedway.SortOrder.Direction
  • org.mokai.Message.Direction
  • org.neo4j.graphdb.Direction
  • org.openhab.binding.tcp.Direction
  • org.openstreetmap.josm.gui.dialogs.relation.sort.WayConnectionType.Direction
  • org.owasp.passfault.keyboard.Key.Direction
  • org.pokenet.server.backend.entity.Positionable.Direction
  • org.pshdl.interpreter.VariableInformation.Direction
  • org.rascalmpl.interpreter.TraversalEvaluator.DIRECTION
  • org.sfaci.jumper2dx.characters.Platform.Direction
  • org.springframework.data.domain.Sort.Direction
  • org.teiid.language.Argument.Direction
  • org.terasology.math.Direction
  • org.zaproxy.zap.extension.websocket.WebSocketMessage.Direction
  • pivot.wtk.Direction
  • zelda.karacter.Direction

  • Examples of org.apache.etch.compiler.opt.Direction

        Opt o = getOpt( "Direction" );

        if (o == null)
          return MessageDirection.SERVER;

        Direction d = (Direction) o;
        return d.getMessageDirection();
      }
    View Full Code Here

    Examples of org.apache.hadoop.gateway.filter.rewrite.api.UrlRewriter.Direction

      @Override
      public List<String> resolve( UrlRewriteContext context, List<String> parameters ) throws Exception {
        List<String> results = null;
        if( parameters != null ) {
          Direction direction = context.getDirection();
          results = new ArrayList<String>( parameters.size() );
          for( String parameter : parameters ) {
            parameter = resolve( direction, parameter );
            results.add( parameter );
          }
    View Full Code Here

    Examples of org.apache.hadoop.hive.ql.parse.WindowingSpec.Direction

        end = end > p.size() ? p.size() : end;
        return new Range(start, end, p);
      }

      int getRowBoundaryStart(BoundaryDef b, int currRow) throws HiveException {
        Direction d = b.getDirection();
        int amt = b.getAmt();
        switch(d) {
        case PRECEDING:
          if (amt == BoundarySpec.UNBOUNDED_AMOUNT) {
            return 0;
    View Full Code Here

    Examples of org.apache.jackrabbit.api.security.user.QueryBuilder.Direction

                offset = 0;
            }

            Condition condition = builder.getCondition();
            String sortCol = builder.getSortProperty();
            Direction sortDir = builder.getSortDirection();
            if (bound != null) {
                if (sortCol == null) {
                    log.warn("Ignoring bound {} since no sort order is specified");
                } else {
                    Condition boundCondition = builder.property(sortCol, getCollation(sortDir), bound);
                    condition = condition == null
                            ? boundCondition
                            : builder.and(condition, boundCondition);
                }
            }

            if (condition != null) {
                xPath.append('[');
                condition.accept(this);
                xPath.append(']');
            }

            if (sortCol != null) {
                xPath.append(" order by ")
                        .append(sortCol)
                        .append(' ')
                        .append(sortDir.getDirection());
            }

            QueryManager queryManager = session.getWorkspace().getQueryManager();
            Query query = queryManager.createQuery(xPath.toString(), Query.XPATH);
            long maxCount = builder.getMaxCount();
    View Full Code Here

    Examples of org.apache.metamodel.query.OrderByItem.Direction

        }

        public Query orderBy(String... orderByTokens) {
            for (String orderByToken : orderByTokens) {
                orderByToken = orderByToken.trim();
                final Direction direction;
                if (orderByToken.toUpperCase().endsWith("DESC")) {
                    direction = Direction.DESC;
                    orderByToken = orderByToken.substring(0, orderByToken.length() - 4).trim();
                } else if (orderByToken.toUpperCase().endsWith("ASC")) {
                    direction = Direction.ASC;
    View Full Code Here

    Examples of org.apache.pivot.wtk.Direction

        public boolean keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation) {
            boolean consumed = false;

            if (keyCode == Keyboard.KeyCode.TAB
                && getComponent().isFocused()) {
                Direction direction = (Keyboard.isPressed(Keyboard.Modifier.SHIFT)) ?
                    Direction.BACKWARD : Direction.FORWARD;

                Component previousFocusedComponent = Component.getFocusedComponent();
                previousFocusedComponent.transferFocus(direction);
    View Full Code Here

    Examples of org.apache.tapestry.spec.Direction

                    continue;
                }

                IParameterSpecification pspec = spec.getParameter(name);
                Direction direction = pspec.getDirection();

                if (direction != Direction.IN && direction != Direction.FORM)
                {
                    if (debug)
                        LOG.debug("Parameter is " + pspec.getDirection().getName() + ".");

                    continue;
                }

                if (!direction.getAllowInvariant() && binding.isInvariant())
                    throw new ConnectedParameterException(
                        Tapestry.format(
                            "ParameterManager.incompatible-direction-and-binding",
                            new Object[] {
                                name,
                                _component.getExtendedId(),
                                direction.getDisplayName(),
                                binding }),
                        _component,
                        name,
                        null,
                        binding.getLocation(),
    View Full Code Here

    Examples of org.apache.woden.wsdl20.enumeration.Direction

        {
            BindingMessageReference bindMsgRef = fBindOper.getBindingMessageReferences()[0];
            assertNotNull("The BindingOperation does not contain a BindingMessageReference.", bindMsgRef);

            BindingMessageReferenceElement bindMsgRefEl = bindMsgRef.toElement();
            Direction direction = bindMsgRefEl.getDirection();
            assertTrue("The BindingMessageReference does not represent an <input> element.", Direction.IN.equals(direction));

            SOAPBindingMessageReferenceExtensions soapBindMsgRefExts =
                (SOAPBindingMessageReferenceExtensions) bindMsgRef.getComponentExtensionContext(SOAPConstants.NS_URI_SOAP);
            SOAPModule[] actual = soapBindMsgRefExts.getSoapModules();
    View Full Code Here

    Examples of org.apache.woden.wsdl20.extensions.rpc.Direction

              QName qname = convertQName(ownerEl, qnameStr);
              if (qname == null)
                return null;

              String directionStr = (String) i.next();
              Direction direction = convertDirection(directionStr);
              if (direction == null)
                return null;

              args[j] = new Argument(qname, direction);
            }
    View Full Code Here

    Examples of org.chromium.debug.core.model.BreakpointSynchronizer.Direction

        }
        throw new RuntimeException("Failed to find breakpoint option"); //$NON-NLS-1$
      }

      private static int findBreakpointOptionRaw(String optionText) {
        Direction direction;
        if (optionText == null || optionText.length() == 0) {
          direction = null;
        } else {
          try {
            direction = Direction.valueOf(optionText);
    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.