You've already forked dart-core-sdk
86 lines
4.3 KiB
Dart
86 lines
4.3 KiB
Dart
// This is a generated file - do not edit.
|
|
//
|
|
// Generated from clickhouse.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 CHChartType extends $pb.ProtobufEnum {
|
|
static const CHChartType CH_CHART_TYPE_UNKNOWN = CHChartType._(0, _omitEnumNames ? '' : 'CH_CHART_TYPE_UNKNOWN');
|
|
static const CHChartType CH_CHART_TYPE_LINE_CHART = CHChartType._(1, _omitEnumNames ? '' : 'CH_CHART_TYPE_LINE_CHART');
|
|
static const CHChartType CH_CHART_TYPE_MULTI_LINE_CHART = CHChartType._(2, _omitEnumNames ? '' : 'CH_CHART_TYPE_MULTI_LINE_CHART');
|
|
static const CHChartType CH_CHART_TYPE_VERTICAL_BAR_CHART = CHChartType._(3, _omitEnumNames ? '' : 'CH_CHART_TYPE_VERTICAL_BAR_CHART');
|
|
static const CHChartType CH_CHART_TYPE_HORIZONTAL_BAR_CHART = CHChartType._(4, _omitEnumNames ? '' : 'CH_CHART_TYPE_HORIZONTAL_BAR_CHART');
|
|
static const CHChartType CH_CHART_TYPE_STACKED_BAR_CHART = CHChartType._(5, _omitEnumNames ? '' : 'CH_CHART_TYPE_STACKED_BAR_CHART');
|
|
static const CHChartType CH_CHART_TYPE_PIE_CHART = CHChartType._(6, _omitEnumNames ? '' : 'CH_CHART_TYPE_PIE_CHART');
|
|
static const CHChartType CH_CHART_TYPE_DOUGHNUT_CHART = CHChartType._(7, _omitEnumNames ? '' : 'CH_CHART_TYPE_DOUGHNUT_CHART');
|
|
static const CHChartType CH_CHART_TYPE_METRIC = CHChartType._(8, _omitEnumNames ? '' : 'CH_CHART_TYPE_METRIC');
|
|
static const CHChartType CH_CHART_TYPE_TABLE = CHChartType._(9, _omitEnumNames ? '' : 'CH_CHART_TYPE_TABLE');
|
|
static const CHChartType CH_CHART_TYPE_PIVOT_TABLE = CHChartType._(10, _omitEnumNames ? '' : 'CH_CHART_TYPE_PIVOT_TABLE');
|
|
|
|
static const $core.List<CHChartType> values = <CHChartType> [
|
|
CH_CHART_TYPE_UNKNOWN,
|
|
CH_CHART_TYPE_LINE_CHART,
|
|
CH_CHART_TYPE_MULTI_LINE_CHART,
|
|
CH_CHART_TYPE_VERTICAL_BAR_CHART,
|
|
CH_CHART_TYPE_HORIZONTAL_BAR_CHART,
|
|
CH_CHART_TYPE_STACKED_BAR_CHART,
|
|
CH_CHART_TYPE_PIE_CHART,
|
|
CH_CHART_TYPE_DOUGHNUT_CHART,
|
|
CH_CHART_TYPE_METRIC,
|
|
CH_CHART_TYPE_TABLE,
|
|
CH_CHART_TYPE_PIVOT_TABLE,
|
|
];
|
|
|
|
static final $core.List<CHChartType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 10);
|
|
static CHChartType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
|
|
|
const CHChartType._(super.value, super.name);
|
|
}
|
|
|
|
class CHQueryType extends $pb.ProtobufEnum {
|
|
static const CHQueryType CH_QUERY_TYPE_UNKNOWN = CHQueryType._(0, _omitEnumNames ? '' : 'CH_QUERY_TYPE_UNKNOWN');
|
|
static const CHQueryType CH_QUERY_TYPE_A = CHQueryType._(1, _omitEnumNames ? '' : 'CH_QUERY_TYPE_A');
|
|
static const CHQueryType CH_QUERY_TYPE_B = CHQueryType._(2, _omitEnumNames ? '' : 'CH_QUERY_TYPE_B');
|
|
static const CHQueryType CH_QUERY_TYPE_C = CHQueryType._(3, _omitEnumNames ? '' : 'CH_QUERY_TYPE_C');
|
|
|
|
static const $core.List<CHQueryType> values = <CHQueryType> [
|
|
CH_QUERY_TYPE_UNKNOWN,
|
|
CH_QUERY_TYPE_A,
|
|
CH_QUERY_TYPE_B,
|
|
CH_QUERY_TYPE_C,
|
|
];
|
|
|
|
static final $core.List<CHQueryType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
|
static CHQueryType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
|
|
|
const CHQueryType._(super.value, super.name);
|
|
}
|
|
|
|
class KpiDataResultFormat extends $pb.ProtobufEnum {
|
|
static const KpiDataResultFormat KPIDATA_RESULT_FORMAT_RAW = KpiDataResultFormat._(0, _omitEnumNames ? '' : 'KPIDATA_RESULT_FORMAT_RAW');
|
|
static const KpiDataResultFormat KPIDATA_RESULT_FORMAT_SERIES = KpiDataResultFormat._(1, _omitEnumNames ? '' : 'KPIDATA_RESULT_FORMAT_SERIES');
|
|
|
|
static const $core.List<KpiDataResultFormat> values = <KpiDataResultFormat> [
|
|
KPIDATA_RESULT_FORMAT_RAW,
|
|
KPIDATA_RESULT_FORMAT_SERIES,
|
|
];
|
|
|
|
static final $core.List<KpiDataResultFormat?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 1);
|
|
static KpiDataResultFormat? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
|
|
|
const KpiDataResultFormat._(super.value, super.name);
|
|
}
|
|
|
|
|
|
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|