Enum ResourceType
- java.lang.Object
-
- java.lang.Enum<ResourceType>
-
- org.openqa.selenium.devtools.v111.network.model.ResourceType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ResourceType>
public enum ResourceType extends java.lang.Enum<ResourceType>
Resource type as it was perceived by the rendering engine.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CSPVIOLATIONREPORTDOCUMENTEVENTSOURCEFETCHFONTIMAGEMANIFESTMEDIAOTHERPINGPREFETCHPREFLIGHTSCRIPTSIGNEDEXCHANGESTYLESHEETTEXTTRACKWEBSOCKETXHR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResourceTypefromString(java.lang.String s)java.lang.StringtoJson()java.lang.StringtoString()static ResourceTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ResourceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENT
public static final ResourceType DOCUMENT
-
STYLESHEET
public static final ResourceType STYLESHEET
-
IMAGE
public static final ResourceType IMAGE
-
MEDIA
public static final ResourceType MEDIA
-
FONT
public static final ResourceType FONT
-
SCRIPT
public static final ResourceType SCRIPT
-
TEXTTRACK
public static final ResourceType TEXTTRACK
-
XHR
public static final ResourceType XHR
-
FETCH
public static final ResourceType FETCH
-
PREFETCH
public static final ResourceType PREFETCH
-
EVENTSOURCE
public static final ResourceType EVENTSOURCE
-
WEBSOCKET
public static final ResourceType WEBSOCKET
-
MANIFEST
public static final ResourceType MANIFEST
-
SIGNEDEXCHANGE
public static final ResourceType SIGNEDEXCHANGE
-
PING
public static final ResourceType PING
-
CSPVIOLATIONREPORT
public static final ResourceType CSPVIOLATIONREPORT
-
PREFLIGHT
public static final ResourceType PREFLIGHT
-
OTHER
public static final ResourceType OTHER
-
-
Method Detail
-
values
public static ResourceType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ResourceType c : ResourceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
fromString
public static ResourceType fromString(java.lang.String s)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<ResourceType>
-
toJson
public java.lang.String toJson()
-
-