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.maltparserx.core.syntaxgraph.headrules.Direction

      }
     
      private PhraseStructureNode identifyHeadChild(HeadRules headRules) throws MaltChainedException {
        PhraseStructureNode headChild = (headRules == null)?null:headRules.getHeadChild(this);
        if (headChild == null) {
          Direction direction = (headRules == null)?Direction.LEFT:headRules.getDefaultDirection(this);
          if (direction == Direction.LEFT) {
            if ((headChild = leftmostTerminalChild()) == null) {
              headChild = leftmostNonTerminalChild();
            }
          } else {
    View Full Code Here

    Examples of org.meb.speedway.SortOrder.Direction

            // orderList.add(cb.desc(cb.function("trunc", Path.class,
            // path)));
            // }
            SortOrderItem item = iter.next();
            Path<?> path = root.get(mt.getSingularAttribute(item.getProperty()));
            Direction direction = item.getDirection();
            if (direction == Direction.ASC) {
              orderList.add(cb.asc(path));
            } else if (direction == Direction.DESC) {
              orderList.add(cb.desc(path));
            } else if (direction == Direction.ASC_TRUNC) {
    View Full Code Here

    Examples of org.mokai.Message.Direction

      private void save(Message message) throws StoreException, RejectedException {
        Connection conn = null;

        try {
          conn = dataSource.getConnection();
          Direction direction = message.getDirection();

          // check if the handler supports the message
          if (handler.supportsDirection(direction)) {
            long id = handler.insertMessage(conn, message);
            message.setId(id);
    View Full Code Here

    Examples of org.neo4j.graphdb.Direction

        ;

        int numRels = relTypes.size();
        for(int i=0; i<numRels; i++) {
          RelationshipType relType = relTypes.get(i);
          Direction direction = directions.get(i);
          description = description.relationships(relType, direction);
        }

        return description;
      }
    View Full Code Here

    Examples of org.openhab.binding.tcp.Direction

       */
      private void parseBindingConfig(ProtocolBindingConfig config,Item item,
          String bindingConfig) throws BindingConfigParseException {

        String direction = null;
        Direction directionType = null;
        String commandAsString = null;
        String host = null;
        String port = null;
        String protocolCommand = null;

    View Full Code Here

    Examples of org.openstreetmap.josm.gui.dialogs.relation.sort.WayConnectionType.Direction

                }
            }
        }

        private Direction determineDirectionOfFirst(final int i, final RelationMember m) {
            Direction result = RelationSortUtils.roundaboutType(m);
            if (result != NONE)
                return result;

            if (RelationSortUtils.isOneway(m)){
                if (RelationSortUtils.isBackward(m)) return BACKWARD;
    View Full Code Here

    Examples of org.owasp.passfault.keyboard.Key.Direction

      @Override
      public void analyze(PasswordResults pass) throws Exception {
        CharSequence password = pass.getCharSequence();
        Key previous = keyboard.get(password.charAt(0));
        Direction currentDirection = null;
        int startOfSequence = 0;

        //Upper is more than just an upper case,  It is a character that results
        //from pressing the shift key and another key
    View Full Code Here

    Examples of org.pokenet.server.backend.entity.Positionable.Direction

       * @param c
       * @param origin
       * @param destination
       */
      public void moveBetweenMaps(Char c, ServerMap origin, ServerMap dest) {
        Direction dir = null;
        /*
         * Reposition player so they're on the correct edge
         */
        if (origin.getX() > dest.getX()) { // dest. map is to the left
          c.setX(dest.getWidth() * 32 - 32);
    View Full Code Here

    Examples of org.pshdl.interpreter.VariableInformation.Direction

        return executableModel;
      }

      public VariableInformation readVariable() throws IOException {
        TLV tlv = null;
        Direction dir = Direction.INTERNAL;
        boolean isRegister = false;
        Type type = Type.BIT;
        String name = null;
        int width = -1;
        int dimensions[] = new int[0];
    View Full Code Here

    Examples of org.rascalmpl.interpreter.TraversalEvaluator.DIRECTION

            subjectType = subjectType.getAbstractDataType();
          }

          Strategy s = this.getStrategy();

          DIRECTION direction = DIRECTION.BottomUp;
          PROGRESS progress = PROGRESS.Continuing;
          FIXEDPOINT fixedpoint = FIXEDPOINT.No;

          if (s.isBottomUp()) {
            direction = DIRECTION.BottomUp;
    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.