2018-05-18 05:43:07 +00:00
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
2019-07-14 22:06:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Batch Editor Modification result for an individual <see cref="PKM"/>.
|
|
|
|
|
/// </summary>
|
2018-05-18 05:43:07 +00:00
|
|
|
|
internal enum ModifyResult
|
|
|
|
|
{
|
2019-07-14 22:06:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The <see cref="PKM"/> has invalid data and is not a suitable candidate for modification.
|
|
|
|
|
/// </summary>
|
2018-05-18 05:43:07 +00:00
|
|
|
|
Invalid,
|
2019-07-14 22:06:45 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An error was occurred while iterating modifications for this <see cref="PKM"/>.
|
|
|
|
|
/// </summary>
|
2018-05-18 05:43:07 +00:00
|
|
|
|
Error,
|
2019-07-14 22:06:45 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The <see cref="PKM"/> was skipped due to a matching Filter.
|
|
|
|
|
/// </summary>
|
2018-05-18 05:43:07 +00:00
|
|
|
|
Filtered,
|
2019-07-14 22:06:45 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The <see cref="PKM"/> was modified.
|
|
|
|
|
/// </summary>
|
2018-05-18 05:43:07 +00:00
|
|
|
|
Modified,
|
|
|
|
|
}
|
|
|
|
|
}
|