Package com.intel.hadoop.graphbuilder.types

Examples of com.intel.hadoop.graphbuilder.types.LongType


*/
public class LongParser implements FieldParser<LongType> {

  @Override
  public LongType getValue(String text) {
    return new LongType(Long.valueOf(text));
  }
View Full Code Here

TOP

Related Classes of com.intel.hadoop.graphbuilder.types.LongType

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.