blob: 95a4ce55db9de79df8d3e33b973daf821161e877 [file] [log] [blame]
class PhoneType extends $pb.ProtobufEnum {
static const PhoneType MOBILE = PhoneType._(0, 'MOBILE');
static const PhoneType HOME = PhoneType._(1, 'HOME');
static const PhoneType WORK = PhoneType._(2, 'WORK');
static const PhoneType BUSINESS = WORK;
static const $core.List<PhoneType> values = <PhoneType> [
MOBILE,
HOME,
WORK,
];
static final $core.Map<$core.int, PhoneType> _byValue = $pb.ProtobufEnum.initByValue(values);
static PhoneType valueOf($core.int value) => _byValue[value];
const PhoneType._($core.int v, $core.String n) : super(v, n);
}