awesome-patterns/creational/abstract_factory/motorbike_factory.go
2018-01-14 15:43:41 +10:00

25 lines
422 B
Go

package main
import (
"errors"
"fmt"
)
const (
SportMotorbikeType = 1
CruiseMotorbikeType = 2
)
type MotorbikeFactory struct{}
func (m *MotorbikeFactory) Build(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))
}
}