Examples of category()


Examples of com.foundationdb.server.types.TOverloadResult.category()

            case PICKING:
                resultInstance = resolutionResult.getPickedInstance();
                castTo = null;
                break;
            default:
                throw new AssertionError(overloadResultStrategy.category());
            }
            if (createPreptimeContext)
                context.setOutputType(resultInstance);

            expression.setPreptimeValue(new TPreptimeValue(resultInstance));
View Full Code Here

Examples of com.foundationdb.server.types.TOverloadResult.category()

                expression.setPreptimeContext(context);
            }
            else {
                context = null;
            }
            switch (overloadResultStrategy.category()) {
            case CUSTOM:
                TInstance castSource = overloadResultStrategy.customRuleCastSource(anyOperandsNullable);
                if (context == null)
                    context = new TPreptimeContext(operandInstances, queryContext);
                expression.setPreptimeContext(context);
View Full Code Here

Examples of com.saasovation.agilepm.domain.model.product.backlogitem.BacklogItem.category()

            .publish(new ProductBacklogItemPlanned(
                    backlogItem.tenantId(),
                    backlogItem.productId(),
                    backlogItem.backlogItemId(),
                    backlogItem.summary(),
                    backlogItem.category(),
                    backlogItem.type(),
                    backlogItem.storyPoints()));

        return backlogItem;
    }
View Full Code Here

Examples of com.saasovation.agilepm.domain.model.product.backlogitem.BacklogItem.category()

        assertNotNull(savedBacklogItem);
        assertEquals(backlogItem1.tenantId(), savedBacklogItem.tenantId());
        assertEquals(backlogItem1.productId(), savedBacklogItem.productId());
        assertEquals(backlogItem1.summary(), savedBacklogItem.summary());
        assertEquals(backlogItem1.category(), savedBacklogItem.category());
        assertEquals(backlogItem1.type(), savedBacklogItem.type());
        assertEquals(backlogItem1.storyPoints(), savedBacklogItem.storyPoints());

        Collection<BacklogItem> savedBacklogItems =
                backlogItemRepository
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessMgr.category()

  // Test attributes of process manager
  assertTrue(mgrMin.category() == null);
  assertTrue(mgrMin.description() == null);
  assertTrue(mgrMin.version() == null);
  assertTrue(mgrMin.name().equals("SystemTest_minimal/minimal"));
  assertTrue(mgrFull.category().equals("System Test (procdef)"));
  assertTrue(mgrFull.description()
       .equals("Description for test of all accessible attributes"));
 
  assertTrue(mgrFull.version().equals("beta 1"));
  assertTrue(mgrFull.name().equals("SystemTest_full/full"));
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessMgr.category()

  // Test attributes of process manager
  assertTrue(mgrMin.category() == null);
  assertTrue(mgrMin.description() == null);
  assertTrue(mgrMin.version() == null);
  assertTrue(mgrMin.name().equals("SystemTest_minimal/minimal"));
  assertTrue(mgrFull.category().equals("System Test (procdef)"));
  assertTrue(mgrFull.description()
       .equals("Description for test of all accessible attributes"));
 
  assertTrue(mgrFull.version().equals("beta 1"));
  assertTrue(mgrFull.name().equals("SystemTest_full/full"));
View Full Code Here

Examples of denoflionsx.denLib.Config.Annotations.Tunable.category()

        for (Class a : classes) {
            Annotation[] annos = a.getDeclaredAnnotations();
            for (Annotation b : annos) {
                if (b instanceof Tunable) {
                    Tunable t = (Tunable) b;
                    String cat = t.category();
                    Field[] g = a.getDeclaredFields();
                    for (Field h : g) {
                        if (config1 != null) {
                            Property p;
                            if (t.category().contains("items")) {
View Full Code Here

Examples of denoflionsx.denLib.Config.Annotations.Tunable.category()

                    String cat = t.category();
                    Field[] g = a.getDeclaredFields();
                    for (Field h : g) {
                        if (config1 != null) {
                            Property p;
                            if (t.category().contains("items")) {
                                p = config1.getItem(cat, h.getName(), Integer.valueOf(denLib.ReflectionHelper.getStaticField(h).toString()));
                            } else {
                                p = config1.get(cat, h.getName(), denLib.ReflectionHelper.getStaticField(h).toString());
                            }
View Full Code Here

Examples of edu.stanford.nlp.ling.CoreLabel.category()

    // Morphological Analysis
    String morphStr = childLabel.originalText();
    if (morphStr == null || morphStr.equals("")) {
      morphStr = label.value();
      // POS subcategory
      String subCat = childLabel.category();
      if (subCat != null && subCat != "") {
        morphStr += "-" + subCat + "--";
      } else {
        morphStr += "---";
      }
View Full Code Here

Examples of io.undertow.servlet.ExceptionLog.category()

                ExceptionLog log = t.getClass().getAnnotation(ExceptionLog.class);
                if(log != null) {
                    Logger.Level level = log.value();
                    Logger.Level stackTraceLevel = log.stackTraceLevel();
                    String category = log.category();
                    BasicLogger logger = UndertowLogger.REQUEST_LOGGER;
                    if(!category.isEmpty()) {
                        logger = Logger.getLogger(category);
                    }
                    boolean stackTrace = true;
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.