Examples of IntegerField


Examples of org.apache.poi.util.IntegerField

    */
   void writeData(final OutputStream stream)
       throws IOException
   {
      // Update the counts and start positions
      new IntegerField(_bat_count_offset,      _bat_count, _data);
      new IntegerField(_property_start_offset, _property_start, _data);
      new IntegerField(_sbat_start_offset,     _sbat_start, _data);
      new IntegerField(_sbat_block_count_offset, _sbat_count, _data);
      new IntegerField(_xbat_start_offset,      _xbat_start, _data);
      new IntegerField(_xbat_count_offset,      _xbat_count, _data);
     
      // Write the main data out
      stream.write(_data, 0, 512);
     
      // Now do the padding if needed
View Full Code Here

Examples of org.encog.workbench.dialogs.common.IntegerField

    this.setTitle("Convert Other Format File to Encog Binary Training");

    addProperty(this.externalFile = new FileField("source file","Source File",true,false,EncogDocumentFrame.CSV_FILTER));
    addProperty(this.binaryFile = new FileField("target file","Target Encog Binary File(*.egb)",true,true,EncogDocumentFrame.ENCOG_BINARY));
    addProperty(this.fileType = new ComboBoxField("type type", "Export File Type",true,list));
    addProperty(this.inputCount = new IntegerField("input count","Input Count",true,1,10000));
    addProperty(this.idealCount = new IntegerField("ideal count","Ideal Count",true,0,10000));
    addProperty(this.containsSignificance = new CheckField("contains significance column","Significance Column Present"));

    render();
  }
View Full Code Here

Examples of org.encog.workbench.dialogs.common.IntegerField

 
  public CreateEmptyTrainingDialog(Frame owner) {
    super(owner);
    setTitle("Empty Training Data");
    setSize(400,200);
    addProperty(this.elements = new IntegerField("elements","Training Set Elements",true, 0, 10000));
    addProperty(this.input = new IntegerField("input","Input Field Count",true, 1, 1000));
    addProperty(this.ideal = new IntegerField("ideal","Output Field Count",true, 0, 1000));
    render();
  }
View Full Code Here

Examples of org.encog.workbench.dialogs.common.IntegerField

 
  public RandomTrainingDataDialog(Frame owner) {
    super(owner);
    setTitle("Random Training Data");
    setSize(400,200);
    addProperty(this.elements = new IntegerField("elements","Training Set Elements",true, 0, 1000000));
    addProperty(this.columns = new IntegerField("columns","Random Column Count",true, 1, 1000));
    addProperty(this.low = new DoubleField("low","Random Low Value",true, 0, -1));
    addProperty(this.high = new DoubleField("high","Random High Value",true, 0, -1));
    render();
  }
View Full Code Here

Examples of org.encog.workbench.dialogs.common.IntegerField

    int year = gc.get(Calendar.YEAR);
   
    setTitle("Market Training Data");
    setSize(500,400);
    addProperty(this.ticker = new TextField("ticker","Ticker Symbol",true));
    addProperty(this.fromMonth = new IntegerField("begin month","Beginning Month(1-12)",true, 1, 12));
    addProperty(this.fromDay = new IntegerField("begin day","Beginning Day(1-12)",true, 1, 31));
    addProperty(this.fromYear = new IntegerField("begin year","Beginning Year(1-12)",true, 1900, year));
   
    addProperty(this.toMonth = new IntegerField("end month","Ending Month(1-12)",true, 1, 12));
    addProperty(this.toDay = new IntegerField("end day","Ending Day(1-12)",true, 1, 31));
    addProperty(this.toYear = new IntegerField("end year","Ending Year(1-12)",true, 1900, year));
   
   
    render();
  }
View Full Code Here

Examples of org.encog.workbench.dialogs.common.IntegerField

    addProperty(this.targetField = new TextField("target field", "Target Field(blank for auto)", false));
    addProperty(this.headers = new CheckField("headers","CSV File Headers"));
    addProperty(this.range = new ComboBoxField("normalization range", "Normalization Range", true, rangeList));
    addProperty(this.missing = new ComboBoxField("missing values", "Missing Values", true, missingList));
    beginTab("Time Series");
    addProperty(this.lagCount = new IntegerField("lag count","Lag Count",true,0,1000));
    addProperty(this.leadCount = new IntegerField("lead count","Lead Count",true,0,1000));
    addProperty(this.includeTarget = new CheckField("include target","Include Target in Input"));
    beginTab("Tasks");
    addProperty(this.normalize = new CheckField("normalize","Normalize"));
    addProperty(this.randomize = new CheckField("randomize","Randomize"));
    addProperty(this.segregate = new CheckField("segregate","Segregate"));
View Full Code Here

Examples of org.gwtoolbox.widget.client.form.field.IntegerField

        Form form = new Form();
        form.addFields(
                new ShortTextField("firstName", "First Name"),
                new ShortTextField("lastName", "Last Name"),
                new IntegerField("age", "Age"),
                new ShortTextField("email", "Email").setValidators(Validators.email()),
                new ShortTextField("address.street", "Street"),
                new ShortTextField("address.city", "City"),
                new ShortTextField("address.country", "Country")
        );
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.