Source: row.js

/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

/** @module reactive-pg-client-js/row */
var utils = require('vertx-js/util/utils');
var Json = require('reactive-pg-client-js/json');
var Buffer = require('vertx-js/buffer');
var Tuple = require('reactive-pg-client-js/tuple');

var io = Packages.io;
var JsonObject = io.vertx.core.json.JsonObject;
var JRow = Java.type('io.reactiverse.pgclient.Row');
var Point = Java.type('io.reactiverse.pgclient.data.Point');
var Path = Java.type('io.reactiverse.pgclient.data.Path');
var Box = Java.type('io.reactiverse.pgclient.data.Box');
var Circle = Java.type('io.reactiverse.pgclient.data.Circle');
var Polygon = Java.type('io.reactiverse.pgclient.data.Polygon');
var Interval = Java.type('io.reactiverse.pgclient.data.Interval');
var LineSegment = Java.type('io.reactiverse.pgclient.data.LineSegment');
var Line = Java.type('io.reactiverse.pgclient.data.Line');

/**
 @class
*/
var Row = function(j_val) {

  var j_row = j_val;
  var that = this;
  Tuple.call(this, j_val);

  var __super_getColumnName = this.getColumnName;
  var __super_getBoolean = this.getBoolean;
  var __super_getValue = this.getValue;
  var __super_getShort = this.getShort;
  var __super_getInteger = this.getInteger;
  var __super_getLong = this.getLong;
  var __super_getFloat = this.getFloat;
  var __super_getDouble = this.getDouble;
  var __super_getString = this.getString;
  var __super_getJson = this.getJson;
  var __super_getBuffer = this.getBuffer;
  var __super_getPoint = this.getPoint;
  var __super_getLine = this.getLine;
  var __super_getLineSegment = this.getLineSegment;
  var __super_getBox = this.getBox;
  var __super_getPath = this.getPath;
  var __super_getPolygon = this.getPolygon;
  var __super_getCircle = this.getCircle;
  var __super_getInterval = this.getInterval;
  /**
   Get a column name at <code>pos</code>.

   @public
   @param pos {number} the position 
   @return {string} the column name or <code>null</code>
   */
  this.getColumnName =  function(pos) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] ==='number') {
      return j_row["getColumnName(int)"](__args[0]) ;
    } else if (typeof __super_getColumnName != 'undefined') {
      return __super_getColumnName.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get a boolean value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {boolean} the value or <code>null</code>
   */
  this.getBoolean =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return j_row["getBoolean(java.lang.String)"](__args[0]) ;
    } else if (typeof __super_getBoolean != 'undefined') {
      return __super_getBoolean.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get an object value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {Object} the value or <code>null</code>
   */
  this.getValue =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnTypeUnknown(j_row["getValue(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getValue != 'undefined') {
      return __super_getValue.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get a short value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {number} the value or <code>null</code>
   */
  this.getShort =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return j_row["getShort(java.lang.String)"](__args[0]) ;
    } else if (typeof __super_getShort != 'undefined') {
      return __super_getShort.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get an integer value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {number} the value or <code>null</code>
   */
  this.getInteger =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return j_row["getInteger(java.lang.String)"](__args[0]) ;
    } else if (typeof __super_getInteger != 'undefined') {
      return __super_getInteger.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get a long value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {number} the value or <code>null</code>
   */
  this.getLong =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnLong(j_row["getLong(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getLong != 'undefined') {
      return __super_getLong.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get a float value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {number} the value or <code>null</code>
   */
  this.getFloat =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return j_row["getFloat(java.lang.String)"](__args[0]) ;
    } else if (typeof __super_getFloat != 'undefined') {
      return __super_getFloat.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get a double value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {number} the value or <code>null</code>
   */
  this.getDouble =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return j_row["getDouble(java.lang.String)"](__args[0]) ;
    } else if (typeof __super_getDouble != 'undefined') {
      return __super_getDouble.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get a string value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {string} the value or <code>null</code>
   */
  this.getString =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return j_row["getString(java.lang.String)"](__args[0]) ;
    } else if (typeof __super_getString != 'undefined') {
      return __super_getString.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get a json value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {Json} the value or <code>null</code>
   */
  this.getJson =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnVertxGen(Json, j_row["getJson(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getJson != 'undefined') {
      return __super_getJson.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get a buffer value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {Buffer} the value or <code>null</code>
   */
  this.getBuffer =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnVertxGen(Buffer, j_row["getBuffer(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getBuffer != 'undefined') {
      return __super_getBuffer.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get  value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {Object} the value or <code>null</code>
   */
  this.getPoint =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnDataObject(j_row["getPoint(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getPoint != 'undefined') {
      return __super_getPoint.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get  value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {Object} the value or <code>null</code>
   */
  this.getLine =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnDataObject(j_row["getLine(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getLine != 'undefined') {
      return __super_getLine.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get  value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {Object} the value or <code>null</code>
   */
  this.getLineSegment =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnDataObject(j_row["getLineSegment(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getLineSegment != 'undefined') {
      return __super_getLineSegment.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get  value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {Object} the value or <code>null</code>
   */
  this.getBox =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnDataObject(j_row["getBox(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getBox != 'undefined') {
      return __super_getBox.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get  value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {Object} the value or <code>null</code>
   */
  this.getPath =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnDataObject(j_row["getPath(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getPath != 'undefined') {
      return __super_getPath.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get  value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {Object} the value or <code>null</code>
   */
  this.getPolygon =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnDataObject(j_row["getPolygon(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getPolygon != 'undefined') {
      return __super_getPolygon.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get  value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {Object} the value or <code>null</code>
   */
  this.getCircle =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnDataObject(j_row["getCircle(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getCircle != 'undefined') {
      return __super_getCircle.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  /**
   Get  value at <code>pos</code>.

   @public
   @param name {string} the column 
   @return {Object} the value or <code>null</code>
   */
  this.getInterval =  function(name) {
    var __args = arguments;
    if (__args.length === 1 && typeof __args[0] === 'string') {
      return utils.convReturnDataObject(j_row["getInterval(java.lang.String)"](__args[0])) ;
    } else if (typeof __super_getInterval != 'undefined') {
      return __super_getInterval.apply(this, __args);
    }
    else throw new TypeError('function invoked with invalid arguments');
  };

  // A reference to the underlying Java delegate
  // NOTE! This is an internal API and must not be used in user code.
  // If you rely on this property your code is likely to break if we change it / remove it without warning.
  this._jdel = j_row;
};

Row._jclass = utils.getJavaClass("io.reactiverse.pgclient.Row");
Row._jtype = {accept: function(obj) {
    return Row._jclass.isInstance(obj._jdel);
  },wrap: function(jdel) {
    var obj = Object.create(Row.prototype, {});
    Row.apply(obj, arguments);
    return obj;
  },
  unwrap: function(obj) {
    return obj._jdel;
  }
};
Row._create = function(jdel) {var obj = Object.create(Row.prototype, {});
  Row.apply(obj, arguments);
  return obj;
}
module.exports = Row;