forked from pauldemarco/flutter_blue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflutterblue.pbenum.dart
111 lines (94 loc) · 4.19 KB
/
flutterblue.pbenum.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
///
// Generated code. Do not modify.
// source: flutterblue.proto
//
// @dart = 2.3
// ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type
// ignore_for_file: UNDEFINED_SHOWN_NAME,UNUSED_SHOWN_NAME
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
class BluetoothState_State extends $pb.ProtobufEnum {
static const BluetoothState_State UNKNOWN =
BluetoothState_State._(0, 'UNKNOWN');
static const BluetoothState_State UNAVAILABLE =
BluetoothState_State._(1, 'UNAVAILABLE');
static const BluetoothState_State UNAUTHORIZED =
BluetoothState_State._(2, 'UNAUTHORIZED');
static const BluetoothState_State TURNING_ON =
BluetoothState_State._(3, 'TURNING_ON');
static const BluetoothState_State ON = BluetoothState_State._(4, 'ON');
static const BluetoothState_State TURNING_OFF =
BluetoothState_State._(5, 'TURNING_OFF');
static const BluetoothState_State OFF = BluetoothState_State._(6, 'OFF');
static const $core.List<BluetoothState_State> values = <BluetoothState_State>[
UNKNOWN,
UNAVAILABLE,
UNAUTHORIZED,
TURNING_ON,
ON,
TURNING_OFF,
OFF,
];
static final $core.Map<$core.int, BluetoothState_State> _byValue =
$pb.ProtobufEnum.initByValue(values);
static BluetoothState_State valueOf($core.int value) => _byValue[value];
const BluetoothState_State._($core.int v, $core.String n) : super(v, n);
}
class BluetoothDevice_Type extends $pb.ProtobufEnum {
static const BluetoothDevice_Type UNKNOWN =
BluetoothDevice_Type._(0, 'UNKNOWN');
static const BluetoothDevice_Type CLASSIC =
BluetoothDevice_Type._(1, 'CLASSIC');
static const BluetoothDevice_Type LE = BluetoothDevice_Type._(2, 'LE');
static const BluetoothDevice_Type DUAL = BluetoothDevice_Type._(3, 'DUAL');
static const $core.List<BluetoothDevice_Type> values = <BluetoothDevice_Type>[
UNKNOWN,
CLASSIC,
LE,
DUAL,
];
static final $core.Map<$core.int, BluetoothDevice_Type> _byValue =
$pb.ProtobufEnum.initByValue(values);
static BluetoothDevice_Type valueOf($core.int value) => _byValue[value];
const BluetoothDevice_Type._($core.int v, $core.String n) : super(v, n);
}
class WriteCharacteristicRequest_WriteType extends $pb.ProtobufEnum {
static const WriteCharacteristicRequest_WriteType WITH_RESPONSE =
WriteCharacteristicRequest_WriteType._(0, 'WITH_RESPONSE');
static const WriteCharacteristicRequest_WriteType WITHOUT_RESPONSE =
WriteCharacteristicRequest_WriteType._(1, 'WITHOUT_RESPONSE');
static const $core.List<WriteCharacteristicRequest_WriteType> values =
<WriteCharacteristicRequest_WriteType>[
WITH_RESPONSE,
WITHOUT_RESPONSE,
];
static final $core.Map<$core.int, WriteCharacteristicRequest_WriteType>
_byValue = $pb.ProtobufEnum.initByValue(values);
static WriteCharacteristicRequest_WriteType valueOf($core.int value) =>
_byValue[value];
const WriteCharacteristicRequest_WriteType._($core.int v, $core.String n)
: super(v, n);
}
class DeviceStateResponse_BluetoothDeviceState extends $pb.ProtobufEnum {
static const DeviceStateResponse_BluetoothDeviceState DISCONNECTED =
DeviceStateResponse_BluetoothDeviceState._(0, 'DISCONNECTED');
static const DeviceStateResponse_BluetoothDeviceState CONNECTING =
DeviceStateResponse_BluetoothDeviceState._(1, 'CONNECTING');
static const DeviceStateResponse_BluetoothDeviceState CONNECTED =
DeviceStateResponse_BluetoothDeviceState._(2, 'CONNECTED');
static const DeviceStateResponse_BluetoothDeviceState DISCONNECTING =
DeviceStateResponse_BluetoothDeviceState._(3, 'DISCONNECTING');
static const $core.List<DeviceStateResponse_BluetoothDeviceState> values =
<DeviceStateResponse_BluetoothDeviceState>[
DISCONNECTED,
CONNECTING,
CONNECTED,
DISCONNECTING,
];
static final $core.Map<$core.int, DeviceStateResponse_BluetoothDeviceState>
_byValue = $pb.ProtobufEnum.initByValue(values);
static DeviceStateResponse_BluetoothDeviceState valueOf($core.int value) =>
_byValue[value];
const DeviceStateResponse_BluetoothDeviceState._($core.int v, $core.String n)
: super(v, n);
}