37 lines
1.3 KiB
Dart
37 lines
1.3 KiB
Dart
//
|
|
// Generated code. Do not modify.
|
|
// source: signaler_service.proto
|
|
//
|
|
// @dart = 2.12
|
|
|
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
|
|
|
import 'dart:core' as $core;
|
|
|
|
import 'package:protobuf/protobuf.dart' as $pb;
|
|
|
|
class Sample_Type extends $pb.ProtobufEnum {
|
|
static const Sample_Type UNSPECIFIED = Sample_Type._(0, _omitEnumNames ? '' : 'UNSPECIFIED');
|
|
static const Sample_Type TEMPERATURE_C = Sample_Type._(1, _omitEnumNames ? '' : 'TEMPERATURE_C');
|
|
static const Sample_Type HUMIDITY = Sample_Type._(2, _omitEnumNames ? '' : 'HUMIDITY');
|
|
static const Sample_Type PRESSURE = Sample_Type._(3, _omitEnumNames ? '' : 'PRESSURE');
|
|
|
|
static const $core.List<Sample_Type> values = <Sample_Type> [
|
|
UNSPECIFIED,
|
|
TEMPERATURE_C,
|
|
HUMIDITY,
|
|
PRESSURE,
|
|
];
|
|
|
|
static final $core.Map<$core.int, Sample_Type> _byValue = $pb.ProtobufEnum.initByValue(values);
|
|
static Sample_Type? valueOf($core.int value) => _byValue[value];
|
|
|
|
const Sample_Type._($core.int v, $core.String n) : super(v, n);
|
|
}
|
|
|
|
|
|
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|