public void SetNthMask(int index, object obj)
            {
                AlchemicalApparatusData_FieldIndex enu = (AlchemicalApparatusData_FieldIndex)index;

                switch (enu)
                {
                case AlchemicalApparatusData_FieldIndex.Type:
                    this.Type = (Exception?)obj;
                    break;

                case AlchemicalApparatusData_FieldIndex.Value:
                    this.Value = (Exception?)obj;
                    break;

                case AlchemicalApparatusData_FieldIndex.Weight:
                    this.Weight = (Exception?)obj;
                    break;

                case AlchemicalApparatusData_FieldIndex.Quality:
                    this.Quality = (Exception?)obj;
                    break;

                default:
                    throw new ArgumentException($"Index is out of range: {index}");
                }
            }
            public object?GetNthMask(int index)
            {
                AlchemicalApparatusData_FieldIndex enu = (AlchemicalApparatusData_FieldIndex)index;

                switch (enu)
                {
                case AlchemicalApparatusData_FieldIndex.Type:
                    return(Type);

                case AlchemicalApparatusData_FieldIndex.Value:
                    return(Value);

                case AlchemicalApparatusData_FieldIndex.Weight:
                    return(Weight);

                case AlchemicalApparatusData_FieldIndex.Quality:
                    return(Quality);

                default:
                    throw new ArgumentException($"Index is out of range: {index}");
                }
            }