You've already forked dart-viz-sdk
71 lines
2.6 KiB
Dart
71 lines
2.6 KiB
Dart
//
|
|
// Generated code. Do not modify.
|
|
// source: viz-view.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 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<TimeFormat> values = <TimeFormat> [
|
|
H12,
|
|
H23,
|
|
H24,
|
|
];
|
|
|
|
static final $core.Map<$core.int, TimeFormat> _byValue = $pb.ProtobufEnum.initByValue(values);
|
|
static TimeFormat? valueOf($core.int value) => _byValue[value];
|
|
|
|
const TimeFormat._(super.v, super.n);
|
|
}
|
|
|
|
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<DisplayDate> values = <DisplayDate> [
|
|
DATE,
|
|
DATE_TIME,
|
|
TIME,
|
|
];
|
|
|
|
static final $core.Map<$core.int, DisplayDate> _byValue = $pb.ProtobufEnum.initByValue(values);
|
|
static DisplayDate? valueOf($core.int value) => _byValue[value];
|
|
|
|
const DisplayDate._(super.v, super.n);
|
|
}
|
|
|
|
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<ExtractColumnFormat_type> values = <ExtractColumnFormat_type> [
|
|
UNKNOWN,
|
|
DATE,
|
|
SUFFIX,
|
|
NUMBER,
|
|
];
|
|
|
|
static final $core.Map<$core.int, ExtractColumnFormat_type> _byValue = $pb.ProtobufEnum.initByValue(values);
|
|
static ExtractColumnFormat_type? valueOf($core.int value) => _byValue[value];
|
|
|
|
const ExtractColumnFormat_type._(super.v, super.n);
|
|
}
|
|
|
|
|
|
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|