Examples of NodeType


Examples of com.ardor3d.extension.model.collada.jdom.data.NodeType

     * @param dNode
     * @return a new Ardor3D node, created from the given <node> element
     */
    @SuppressWarnings("unchecked")
    private Node buildNode(final Element dNode, JointNode jointNode) {
        final NodeType nodeType = getNodeType(dNode);
        final JointNode jointChildNode;
        if (nodeType == NodeType.JOINT) {
            String name = dNode.getAttributeValue("name");
            if (name == null) {
                name = dNode.getAttributeValue("id");
View Full Code Here

Examples of com.cathive.fx.guice.PersistentProperty.NodeType

    }

    @Override
    public void injectMembers(final T instance) {

        final NodeType nodeType = annotation.type();
        final Class<?> nodeClass = annotation.clazz();

        final Preferences prefs;
        switch (nodeType) {
        case SYSTEM_NODE:
View Full Code Here

Examples of com.cxy.redisclient.domain.NodeType

    Set<String> nodekeys = getResult();
   
    Iterator<String> it = nodekeys.iterator();
    while (it.hasNext()) {
      String nextKey = it.next();
      NodeType valueType = getValueType(nextKey);

      if(inValueTypes(valueType)){
        Node node = new Node(id, db, nextKey, valueType, order);
        keys.add(node);
      }
View Full Code Here

Examples of com.github.fge.jackson.NodeType

        return message.getMessage();
    }

    private static Object valueToArgument(final JsonNode value)
    {
        final NodeType type = NodeType.getNodeType(value);

        switch (type) {
            case STRING:
                return value.textValue();
            case INTEGER:
View Full Code Here

Examples of com.hp.hpl.jena.tdb.store.NodeType

        return h ;
    }
   
    public static void setHash(Hash h, Node n)
    {
        NodeType nt = NodeType.lookup(n) ;
        switch(nt)
        {
            case URI:
                hash(h, n.getURI(), null, null, nt) ;
                return ;
View Full Code Here

Examples of com.netflix.priam.dse.IDseConfiguration.NodeType

        yaml.dump(map, new FileWriter(dseYaml));
    }

    private void writeCassandraSnitchProperties()
    {
        final NodeType nodeType = dseConfig.getNodeType();
        if(nodeType == NodeType.REAL_TIME_QUERY)
            return;

        Reader reader = null;
        try
View Full Code Here

Examples of com.puppetlabs.xtext.dommodel.IDomNode.NodeType

  }

  private static void appendTypeAndClassifiers(Appendable result, IDomNode node) throws IOException {
    result.append(", ");
    NodeType nodeType = node.getNodeType();
    if(nodeType == null)
      result.append("(unknown node type)");
    else
      result.append(nodeType.toString());

    if(node != null && node.getStyleClassifiers().size() > 0) {
      result.append(" [");
      Joiner.on(", ").appendTo(result, node.getStyleClassifiers());
      result.append("] ");
View Full Code Here

Examples of com.sleepycat.je.rep.NodeType

        throws IOException {

        final RepImpl repImpl = repNode.getRepImpl();
        DbConfigManager configManager = repImpl.getConfigManager();
        String groupName = configManager.get(GROUP_NAME);
        NodeType nodeType =
            NODE_TYPE.getEnumerator(configManager.get(NODE_TYPE));

        Message message = protocol.new
            NodeGroupInfo(groupName,
                          repNode.getGroup().getUUID(),
View Full Code Here

Examples of com.sun.sgs.kernel.NodeType

    {
  super(accessCoordinator, logger, abortLogger);
  logger.log(Level.CONFIG, "Creating DataStoreClient properties:{0}",
       properties);
  PropertiesWrapper wrappedProps = new PropertiesWrapper(properties);
        NodeType nodeType =
                wrappedProps.getEnumProperty(StandardProperties.NODE_TYPE,
                                             NodeType.class,
                                             NodeType.singleNode);
        boolean serverStart = nodeType != NodeType.appNode;
        if (serverStart) {
View Full Code Here

Examples of com.sun.sgs.kernel.NodeType

  shutdownController = ctrl;
 
  try {
      localHost = InetAddress.getLocalHost().getHostName();
               
            NodeType nodeType =
                wrappedProps.getEnumProperty(StandardProperties.NODE_TYPE,
                                             NodeType.class,
                                             NodeType.singleNode);
            boolean startServer = nodeType != NodeType.appNode;
            boolean isFullStack = nodeType != NodeType.coreServerNode;
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.