Files
dart-core-sdk/lib/rules.pbenum.dart
2025-03-31 12:58:50 +00:00

37 lines
1.4 KiB
Dart

//
// Generated code. Do not modify.
// source: rules.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 RuleType extends $pb.ProtobufEnum {
static const RuleType RULE_TYPE_PROJECT_UNKNOWN = RuleType._(0, _omitEnumNames ? '' : 'RULE_TYPE_PROJECT_UNKNOWN');
static const RuleType RULE_TYPE_PROJECT_RESTRICTION = RuleType._(1, _omitEnumNames ? '' : 'RULE_TYPE_PROJECT_RESTRICTION');
static const RuleType RULE_TYPE_PROJECT_PRUNE = RuleType._(2, _omitEnumNames ? '' : 'RULE_TYPE_PROJECT_PRUNE');
static const RuleType RULE_TYPE_PROJECT_ANONYMIZE = RuleType._(3, _omitEnumNames ? '' : 'RULE_TYPE_PROJECT_ANONYMIZE');
static const $core.List<RuleType> values = <RuleType> [
RULE_TYPE_PROJECT_UNKNOWN,
RULE_TYPE_PROJECT_RESTRICTION,
RULE_TYPE_PROJECT_PRUNE,
RULE_TYPE_PROJECT_ANONYMIZE,
];
static final $core.Map<$core.int, RuleType> _byValue = $pb.ProtobufEnum.initByValue(values);
static RuleType? valueOf($core.int value) => _byValue[value];
const RuleType._(super.v, super.n);
}
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');