implements |
BackedEnum |
|---|
Enum representing supported HTTP methods.
This enum is used across the LaravelUi5 core to reason about request semantics, especially in the context of Ui5Actions.
Note on Ui5Actions: Ui5Actions intentionally support only POST, PATCH and DELETE. PUT is included in the enum for completeness, but is excluded from Ui5Actions because full-resource replacement semantics are not practical in typical SAP/OpenUI5 scenarios.
| Cases | |
|---|---|
GET = 1
|
# |
POST = 2
|
# |
PUT = 3
|
# |
PATCH = 4
|
# |
DELETE = 5
|
# |
OPTIONS = 6
|
# |
HEAD = 7
|
# |
| Methods | ||
|---|---|---|
public
|
label(): string
|
# |
public
|
isRead(): boolean
|
# |
public
|
isWrite(): boolean
|
# |
public
|
isValidUi5ActionMethod(): boolean
|
# |