awesome-patterns/creational/abstract_factory/motorbike_factory.go
Lucas Alves ffebe52a4f Change Build for NewVehicle in motorbike_factory
* To implements VehicleFactory the name of the function
	  is changed
2021-07-01 00:55:09 -03:00

25 lines
427 B
Go

package main
import (
"errors"
"fmt"
)
const (
SportMotorbikeType = 1
CruiseMotorbikeType = 2
)
type MotorbikeFactory struct{}
func (m *MotorbikeFactory) NewVehicle(v int) (Vehicle, error) {
switch v {
case SportMotorbikeType:
return new(SportMotorbike), nil
case CruiseMotorbikeType:
return new(CruiseMotorbike), nil
default:
return nil, errors.New(fmt.Sprintf("Motor bike of type %d not exist\n", v))
}
}