app-starlock/lib/talk/startChart/proto/talk_data.pbenum.dart

36 lines
1.3 KiB
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// Generated code. Do not modify.
// source: talk_data.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;
/// 内容类型枚举: 一张图传一帧H264一段G711
class TalkData_ContentTypeE extends $pb.ProtobufEnum {
static const TalkData_ContentTypeE Image = TalkData_ContentTypeE._(0, _omitEnumNames ? '' : 'Image');
static const TalkData_ContentTypeE H264 = TalkData_ContentTypeE._(1, _omitEnumNames ? '' : 'H264');
static const TalkData_ContentTypeE G711 = TalkData_ContentTypeE._(2, _omitEnumNames ? '' : 'G711');
static const $core.List<TalkData_ContentTypeE> values = <TalkData_ContentTypeE> [
Image,
H264,
G711,
];
static final $core.Map<$core.int, TalkData_ContentTypeE> _byValue = $pb.ProtobufEnum.initByValue(values);
static TalkData_ContentTypeE? valueOf($core.int value) => _byValue[value];
const TalkData_ContentTypeE._($core.int v, $core.String n) : super(v, n);
}
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');