Sha256: bf971581470631b4f50492930a485893f93d450f1884983330c36db021702471
Contents?: true
Size: 1.21 KB
Versions: 7
Compression:
Stored size: 1.21 KB
Contents
//############################################# //## file: Parser.java //## Generated by Byacc/j //############################################# package org.embulk.filter.row.where; /** * BYACC/J Semantic Value for parser: Parser * This class provides some of the functionality * of the yacc/C 'union' directive */ public class ParserVal { /** * integer value of this 'union' */ public int ival; /** * double value of this 'union' */ public double dval; /** * string value of this 'union' */ public String sval; /** * object value of this 'union' */ public Object obj; //############################################# //## C O N S T R U C T O R S //############################################# /** * Initialize me without a value */ public ParserVal() { } /** * Initialize me as an int */ public ParserVal(int val) { ival=val; } /** * Initialize me as a double */ public ParserVal(double val) { dval=val; } /** * Initialize me as a string */ public ParserVal(String val) { sval=val; } /** * Initialize me as an Object */ public ParserVal(Object val) { obj=val; } }//end class //############################################# //## E N D O F F I L E //#############################################
Version data entries
7 entries across 7 versions & 1 rubygems