You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -41,8 +41,8 @@ class ModelDataSetEnum extends $pb.ProtobufEnum {
|
||||
CLAIM,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, ModelDataSetEnum> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ModelDataSetEnum? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<ModelDataSetEnum?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 10);
|
||||
static ModelDataSetEnum? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const ModelDataSetEnum._(super.v, super.n);
|
||||
}
|
||||
@@ -68,8 +68,8 @@ class WeekDay extends $pb.ProtobufEnum {
|
||||
WEEKDAY_SUNDAY,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, WeekDay> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static WeekDay? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<WeekDay?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 7);
|
||||
static WeekDay? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const WeekDay._(super.v, super.n);
|
||||
}
|
||||
@@ -89,8 +89,8 @@ class SeverityLevel extends $pb.ProtobufEnum {
|
||||
SECURITY,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, SeverityLevel> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static SeverityLevel? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<SeverityLevel?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 4);
|
||||
static SeverityLevel? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const SeverityLevel._(super.v, super.n);
|
||||
}
|
||||
@@ -116,8 +116,8 @@ class ResponseStatus extends $pb.ProtobufEnum {
|
||||
TIMEOUT,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, ResponseStatus> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ResponseStatus? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<ResponseStatus?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 7);
|
||||
static ResponseStatus? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const ResponseStatus._(super.v, super.n);
|
||||
}
|
||||
@@ -185,8 +185,8 @@ class WorkflowTypeEnum extends $pb.ProtobufEnum {
|
||||
SWEEP,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, WorkflowTypeEnum> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static WorkflowTypeEnum? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<WorkflowTypeEnum?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 28);
|
||||
static WorkflowTypeEnum? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const WorkflowTypeEnum._(super.v, super.n);
|
||||
}
|
||||
@@ -200,8 +200,8 @@ class ModuleWorkflowTypeEnum extends $pb.ProtobufEnum {
|
||||
POST_WORKFLOW,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, ModuleWorkflowTypeEnum> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ModuleWorkflowTypeEnum? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<ModuleWorkflowTypeEnum?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 1);
|
||||
static ModuleWorkflowTypeEnum? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const ModuleWorkflowTypeEnum._(super.v, super.n);
|
||||
}
|
||||
@@ -221,8 +221,8 @@ class WorkflowSemaphore extends $pb.ProtobufEnum {
|
||||
WS_CHECK_AND_LAUNCH_RECOVER_DATA,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, WorkflowSemaphore> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static WorkflowSemaphore? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<WorkflowSemaphore?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 4);
|
||||
static WorkflowSemaphore? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const WorkflowSemaphore._(super.v, super.n);
|
||||
}
|
||||
@@ -287,8 +287,8 @@ class EntityType extends $pb.ProtobufEnum {
|
||||
ENTITY_TYPE_CLAIM,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, EntityType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static EntityType? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<EntityType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 11);
|
||||
static EntityType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const EntityType._(super.v, super.n);
|
||||
}
|
||||
@@ -312,8 +312,8 @@ class ClaimEntityType extends $pb.ProtobufEnum {
|
||||
CLAIM_ENTITY_TYPE_MOVEMENT,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, ClaimEntityType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ClaimEntityType? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<ClaimEntityType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 6);
|
||||
static ClaimEntityType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const ClaimEntityType._(super.v, super.n);
|
||||
}
|
||||
@@ -335,8 +335,8 @@ class ClaimSector extends $pb.ProtobufEnum {
|
||||
CLAIM_SECTOR_MISCELLANEOUS,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, ClaimSector> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ClaimSector? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<ClaimSector?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 5);
|
||||
static ClaimSector? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const ClaimSector._(super.v, super.n);
|
||||
}
|
||||
@@ -412,8 +412,8 @@ class TimeFormat extends $pb.ProtobufEnum {
|
||||
H24,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, TimeFormat> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static TimeFormat? valueOf($core.int value) => _byValue[value];
|
||||
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.v, super.n);
|
||||
}
|
||||
@@ -429,8 +429,8 @@ class DisplayDate extends $pb.ProtobufEnum {
|
||||
TIME,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, DisplayDate> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static DisplayDate? valueOf($core.int value) => _byValue[value];
|
||||
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.v, super.n);
|
||||
}
|
||||
@@ -448,8 +448,8 @@ class EntityAdminPlatform extends $pb.ProtobufEnum {
|
||||
NOTIFICATION,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, EntityAdminPlatform> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static EntityAdminPlatform? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<EntityAdminPlatform?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
||||
static EntityAdminPlatform? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const EntityAdminPlatform._(super.v, super.n);
|
||||
}
|
||||
@@ -465,8 +465,8 @@ class RecoverType extends $pb.ProtobufEnum {
|
||||
RECOVER_ALL,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, RecoverType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static RecoverType? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<RecoverType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||
static RecoverType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const RecoverType._(super.v, super.n);
|
||||
}
|
||||
@@ -514,8 +514,8 @@ class ExtractColumnFormat_type extends $pb.ProtobufEnum {
|
||||
NUMBER,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, ExtractColumnFormat_type> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ExtractColumnFormat_type? valueOf($core.int value) => _byValue[value];
|
||||
static final $core.List<ExtractColumnFormat_type?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
||||
static ExtractColumnFormat_type? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const ExtractColumnFormat_type._(super.v, super.n);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user