/** * @fileoverview * @enhanceable * @public */ // GENERATED CODE -- DO NOT EDIT! goog.provide('proto.transit_realtime.TimeRange'); goog.require('jspb.Message'); /** * Generated by JsPbCodeGenerator. * @param {Array=} opt_data Optional initial data array, typically from a * server response, or constructed directly in Javascript. The array is used * in place and becomes part of the constructed object. It is not cloned. * If no data is provided, the constructed object will be empty, but still * valid. * @extends {jspb.Message} * @constructor */ proto.transit_realtime.TimeRange = function(opt_data) { jspb.Message.initialize(this, opt_data, 0, 3, null, null); }; goog.inherits(proto.transit_realtime.TimeRange, jspb.Message); if (goog.DEBUG && !COMPILED) { proto.transit_realtime.TimeRange.displayName = 'proto.transit_realtime.TimeRange'; } if (jspb.Message.GENERATE_TO_OBJECT) { /** * Creates an object representation of this proto suitable for use in Soy templates. * Field names that are reserved in JavaScript and will be renamed to pb_name. * To access a reserved field use, foo.pb_, eg, foo.pb_default. * For the list of reserved names please see: * com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS. * @param {boolean=} opt_includeInstance Whether to include the JSPB instance * for transitional soy proto support: http://goto/soy-param-migration * @return {!Object} */ proto.transit_realtime.TimeRange.prototype.toObject = function(opt_includeInstance) { return proto.transit_realtime.TimeRange.toObject(opt_includeInstance, this); }; /** * Static version of the {@see toObject} method. * @param {boolean|undefined} includeInstance Whether to include the JSPB * instance for transitional soy proto support: * http://goto/soy-param-migration * @param {!proto.transit_realtime.TimeRange} msg The msg instance to transform. * @return {!Object} */ proto.transit_realtime.TimeRange.toObject = function(includeInstance, msg) { var f, obj = { start: jspb.Message.getField(msg, 1), end: jspb.Message.getField(msg, 2) }; jspb.Message.toObjectExtension(/** @type {!jspb.Message} */ (msg), obj, proto.transit_realtime.TimeRange.extensions, proto.transit_realtime.TimeRange.prototype.getExtension, includeInstance); if (includeInstance) { obj.$jspbMessageInstance = msg; } return obj; }; } /** * Creates a deep clone of this proto. No data is shared with the original. * @return {!proto.transit_realtime.TimeRange} The clone. */ proto.transit_realtime.TimeRange.prototype.cloneMessage = function() { return /** @type {!proto.transit_realtime.TimeRange} */ (jspb.Message.cloneMessage(this)); }; /** * optional uint64 start = 1; * @return {number} */ proto.transit_realtime.TimeRange.prototype.getStart = function() { return /** @type {number} */ (!this.hasStart() ? 0 : jspb.Message.getField(this, 1)); }; /** @param {number?|undefined} value */ proto.transit_realtime.TimeRange.prototype.setStart = function(value) { jspb.Message.setField(this, 1, value); }; proto.transit_realtime.TimeRange.prototype.clearStart = function() { jspb.Message.setField(this, 1, undefined); }; /** * Returns whether this field is set. * @return{!boolean} */ proto.transit_realtime.TimeRange.prototype.hasStart = function() { return jspb.Message.getField(this, 1) != null; }; /** * optional uint64 end = 2; * @return {number} */ proto.transit_realtime.TimeRange.prototype.getEnd = function() { return /** @type {number} */ (!this.hasEnd() ? 0 : jspb.Message.getField(this, 2)); }; /** @param {number?|undefined} value */ proto.transit_realtime.TimeRange.prototype.setEnd = function(value) { jspb.Message.setField(this, 2, value); }; proto.transit_realtime.TimeRange.prototype.clearEnd = function() { jspb.Message.setField(this, 2, undefined); }; /** * Returns whether this field is set. * @return{!boolean} */ proto.transit_realtime.TimeRange.prototype.hasEnd = function() { return jspb.Message.getField(this, 2) != null; }; /** * The extensions registered with this message class. This is a map of * extension field number to fieldInfo object. * * For example: * { 123: {fieldIndex: 123, fieldName: {my_field_name: 0}, ctor: proto.example.MyMessage} } * * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * * @type {!Object.} */ proto.transit_realtime.TimeRange.extensions = {};