#import "NullEnum.h"

@implementation NullEnum

- (instancetype)init {
	self = [super initWithValue:nil];
	return self;
}

@end