NULL values are also supported by ENUM field. You can set nullable parameter of column to true or false depends on if you want or not to allow NULL values:
#[ORM\Column(type: 'BasketballPositionType', nullable: true)]
private $position;
// or
#[ORM\Column(type: 'BasketballPositionType', nullable: false)]
private $position;