WebDavMethod enum
Methods available in WebDAV defined in RFC4918. see: https://datatracker.ietf.org/doc/html/rfc4918#section-9
Values
- propfind → const WebDavMethod
-
const WebDavMethod("PROPFIND") - proppatch → const WebDavMethod
-
const WebDavMethod("PROPPATCH") - mkcol → const WebDavMethod
-
const WebDavMethod("MKCOL") - get → const WebDavMethod
-
const WebDavMethod("GET") - head → const WebDavMethod
-
const WebDavMethod("HEAD") - post → const WebDavMethod
-
const WebDavMethod("POST") - delete → const WebDavMethod
-
const WebDavMethod("DELETE") - put → const WebDavMethod
-
const WebDavMethod("PUT") - copy → const WebDavMethod
-
const WebDavMethod("COPY") - move → const WebDavMethod
-
const WebDavMethod("MOVE") - lock → const WebDavMethod
-
const WebDavMethod("LOCK") - unlock → const WebDavMethod
-
const WebDavMethod("UNLOCK") - unknown → const WebDavMethod
-
const WebDavMethod("")
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
final
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
fromName(
String name) → WebDavMethod
Constants
-
values
→ const List<
WebDavMethod> - A constant List of the values in this enum, in order of their declaration.