Package com.facebook.data.types

Examples of com.facebook.data.types.StringDatum


  private StringDatum stringDatum2;
  private StringDatum stringDatum3;

  @BeforeMethod(alwaysRun = true)
  public void setUp() throws Exception {
    emptyStringDatum = new StringDatum("");
    trueStringDatum1 = new StringDatum("1");
    trueStringDatum2 = new StringDatum("true");
    falseStringDatum1 = new StringDatum("false");
    falseStringDatum2 = new StringDatum("False");
    intStringDatum = new StringDatum("100000");
    longStringDatum = new StringDatum("10000000000");
    stringDatum1 = new StringDatum("a string");
    stringDatum2 = new StringDatum("a string");
    stringDatum3 = new StringDatum("b string");
    floatStringDatum = new StringDatum("1.1");
  }
View Full Code Here

TOP

Related Classes of com.facebook.data.types.StringDatum

Copyright © 2018 www.massapicom. 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.