You've already forked dart-viz-sdk
53 lines
1.8 KiB
Dart
53 lines
1.8 KiB
Dart
// 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<TimeFormat> values = <TimeFormat> [
|
|
H12,
|
|
H23,
|
|
H24,
|
|
];
|
|
|
|
static final $core.List<TimeFormat?> _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<DisplayDate> values = <DisplayDate> [
|
|
DATE,
|
|
DATE_TIME,
|
|
TIME,
|
|
];
|
|
|
|
static final $core.List<DisplayDate?> _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);
|
|
}
|
|
|
|
|
|
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|