You've already forked dart-core-sdk
37 lines
1.4 KiB
Dart
37 lines
1.4 KiB
Dart
//
|
|
// Generated code. Do not modify.
|
|
// source: options.proto
|
|
//
|
|
// @dart = 3.3
|
|
|
|
// 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 KPIGroupType extends $pb.ProtobufEnum {
|
|
static const KPIGroupType KPIGROUP_TYPE_UNKNOWN = KPIGroupType._(0, _omitEnumNames ? '' : 'KPIGROUP_TYPE_UNKNOWN');
|
|
static const KPIGroupType KPIGROUP_TYPE_SINK = KPIGroupType._(1, _omitEnumNames ? '' : 'KPIGROUP_TYPE_SINK');
|
|
static const KPIGroupType KPIGROUP_TYPE_MATERIALIZED = KPIGroupType._(2, _omitEnumNames ? '' : 'KPIGROUP_TYPE_MATERIALIZED');
|
|
static const KPIGroupType KPIGROUP_TYPE_VIEW = KPIGroupType._(3, _omitEnumNames ? '' : 'KPIGROUP_TYPE_VIEW');
|
|
|
|
static const $core.List<KPIGroupType> values = <KPIGroupType> [
|
|
KPIGROUP_TYPE_UNKNOWN,
|
|
KPIGROUP_TYPE_SINK,
|
|
KPIGROUP_TYPE_MATERIALIZED,
|
|
KPIGROUP_TYPE_VIEW,
|
|
];
|
|
|
|
static final $core.Map<$core.int, KPIGroupType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
|
static KPIGroupType? valueOf($core.int value) => _byValue[value];
|
|
|
|
const KPIGroupType._(super.v, super.n);
|
|
}
|
|
|
|
|
|
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|