// This is a generated file - do not edit. // // Generated from viz-view.proto. // @dart = 3.3 // ignore_for_file: annotate_overrides, camel_case_types, comment_references // ignore_for_file: constant_identifier_names // ignore_for_file: curly_braces_in_flow_control_structures // ignore_for_file: deprecated_member_use_from_same_package, library_prefixes // ignore_for_file: non_constant_identifier_names import 'dart:core' as $core; import 'package:protobuf/protobuf.dart' as $pb; class TimeFormat extends $pb.ProtobufEnum { static const TimeFormat H12 = TimeFormat._(0, _omitEnumNames ? '' : 'H12'); static const TimeFormat H23 = TimeFormat._(1, _omitEnumNames ? '' : 'H23'); static const TimeFormat H24 = TimeFormat._(2, _omitEnumNames ? '' : 'H24'); static const $core.List values = [ H12, H23, H24, ]; static final $core.List _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2); static TimeFormat? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value]; const TimeFormat._(super.value, super.name); } class DisplayDate extends $pb.ProtobufEnum { static const DisplayDate DATE = DisplayDate._(0, _omitEnumNames ? '' : 'DATE'); static const DisplayDate DATE_TIME = DisplayDate._(1, _omitEnumNames ? '' : 'DATE_TIME'); static const DisplayDate TIME = DisplayDate._(2, _omitEnumNames ? '' : 'TIME'); static const $core.List values = [ DATE, DATE_TIME, TIME, ]; static final $core.List _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2); static DisplayDate? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value]; const DisplayDate._(super.value, super.name); } class ExtractColumnFormat_type extends $pb.ProtobufEnum { static const ExtractColumnFormat_type UNKNOWN = ExtractColumnFormat_type._(0, _omitEnumNames ? '' : 'UNKNOWN'); static const ExtractColumnFormat_type DATE = ExtractColumnFormat_type._(1, _omitEnumNames ? '' : 'DATE'); static const ExtractColumnFormat_type SUFFIX = ExtractColumnFormat_type._(2, _omitEnumNames ? '' : 'SUFFIX'); static const ExtractColumnFormat_type NUMBER = ExtractColumnFormat_type._(3, _omitEnumNames ? '' : 'NUMBER'); static const $core.List values = [ UNKNOWN, DATE, SUFFIX, NUMBER, ]; static final $core.List _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3); static ExtractColumnFormat_type? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value]; const ExtractColumnFormat_type._(super.value, super.name); } const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');