Examples of ValueType


Examples of AGEval.Vertex.ValueType

  }
 
  private String codeGenerateToString(HashMap<String, ValueType> map){
    String toStringCode = "";
    for (String id : sort(map.keySet())){
      ValueType myType = map.get(id);
      toStringCode += "    returning += \"" + id + ": \" + " + Vertex.getConvertFuncToString(myType) + "(this->" + id + ") + \"\\n\";\n";
    }
    return toStringCode;
  }
View Full Code Here

Examples of co.nubetech.crux.model.ValueType

    RowAlias rowAlias = new RowAlias();
    boolean isNumeric = true;
   
    Datastore dataStore = new Datastore();
   
    ValueType valueType = new ValueType(1,dataStore,"Type",null,null,isNumeric);
   
    rowAlias.setAlias("row");
    rowAlias.setValueType(valueType);
   
    DimensionAndMeasureView dimensionAndMeasureView = new DimensionAndMeasureView(rowAlias);
View Full Code Here

Examples of com.google.gwt.dev.shell.BrowserChannel.Value.ValueType

  protected DataOutputStream getStreamToOtherSide() {
    return streamToOtherSide;
  }

  protected Value readValue(DataInputStream stream) throws IOException {
    ValueType tag;
    try {
      tag = readValueType(stream);
    } catch (BrowserChannelException e) {
      IOException ee = new IOException();
      ee.initCause(e);
View Full Code Here

Examples of com.google.gwt.dev.shell.BrowserChannel.Value.ValueType

  protected DataOutputStream getStreamToOtherSide() {
    return streamToOtherSide;
  }

  protected Value readValue(DataInputStream stream) throws IOException {
    ValueType tag;
    try {
      tag = readValueType(stream);
    } catch (BrowserChannelException e) {
      IOException ee = new IOException();
      ee.initCause(e);
View Full Code Here

Examples of com.google.visualization.datasource.datatable.value.ValueType

   */
  static StringBuilder appendCellJson(TableCell cell,
      StringBuilder sb, boolean includeFormatting, boolean isLastColumn,
      boolean renderDateAsDateConstructor) {
    Value value = cell.getValue();
    ValueType type = cell.getType();
    StringBuilder valueJson = new StringBuilder();
    GregorianCalendar calendar;
    String escapedFormattedString = "";
    boolean isJsonNull = false;

View Full Code Here

Examples of com.hazelcast.query.SampleObjects.ValueType

        TestHazelcastInstanceFactory nodeFactory = createHazelcastInstanceFactory(2);
        Config cfg = new Config();
        HazelcastInstance instance = nodeFactory.newHazelcastInstance(cfg);
        final IMap<String, Value> map = instance.getMap("default");
        for (int i = 0; i < 10; i++) {
            final Value v = new Value("name" + i, new ValueType("type" + i), i);
            map.put("" + i, v);
        }
        String[] emptyArray = new String[2];
        final Predicate predicate = new PredicateBuilder().getEntryObject().get("name").in(emptyArray);
        final Collection<Value> values = map.values(predicate);
View Full Code Here

Examples of de.maramuse.soundcomp.process.ValueType

   * @see de.maramuse.soundcomp.process.ProcessElement#setSource(int, de.maramuse.soundcomp.process.NamedSource, int)
   */
  @Override
  public void setSource(int connectionIndex, NamedSource source, int sourceIndex)
    throws UnknownConnectionException, TypeMismatchException {
  ValueType sourceType=source.getSourceTypes().get(sourceIndex);
  ValueType destType=destinationTypes.get(connectionIndex);
  if(destType==null)
    throw new UnknownConnectionException("Could not determine type of "+name+" input "
      +connectionIndex);
  if(sourceType==null)
    throw new UnknownConnectionException("Could not determine type of "+source.getAbstractName()
View Full Code Here

Examples of edu.stanford.bmir.protege.web.client.rpc.data.ValueType

        return true;
    }
   
   
    public OWLObject getOWLObject(EntityData entityData) {
        ValueType valueType = entityData.getValueType();
        if(valueType == null) {
            // Now what?  Totally and utterly horrible.
            // So ugly.
            if(entityData instanceof PropertyEntityData) {
                valueType = ValueType.Property;
View Full Code Here

Examples of fr.inra.lipm.jezlucene.cfg.DocField.ValueType

        return this.indexUnit;
    }

    private DocField buildField(final String name, final String pattern, final String type, final String option) {
        FieldType fieldType;
        ValueType valueType;

        if (type.equals("Keyword")) {
            fieldType = StringField.TYPE_STORED;
            valueType = ValueType.STRING;
        }
View Full Code Here

Examples of io.druid.segment.column.ValueType

      forwardDimWriters.add(writer);
    }

    ArrayList<MetricColumnSerializer> metWriters = Lists.newArrayListWithCapacity(mergedMetrics.size());
    for (String metric : mergedMetrics) {
      ValueType type = valueTypes.get(metric);
      switch (type) {
        case LONG:
          metWriters.add(new LongMetricColumnSerializer(metric, v8OutDir, ioPeon));
          break;
        case FLOAT:
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.