Returns given value's item, if exists.
public function get(string $value) : ?AcceptHeaderItem { return $this->items[$value] ?? $this->items[explode('/', $value)[0] . '/*'] ?? $this->items['*/*'] ?? $this->items['*'] ?? null; }