Enum Class StorageType

java.lang.Object
java.lang.Enum<StorageType>
io.webfolder.cdp.type.storage.StorageType
All Implemented Interfaces:
Serializable, Comparable<StorageType>, java.lang.constant.Constable

public enum StorageType extends Enum<StorageType>
Enum of possible storage types.
  • Enum Constant Details

    • Appcache

      @SerializedName("appcache") public static final StorageType Appcache
    • Cookies

      @SerializedName("cookies") public static final StorageType Cookies
    • FileSystems

      @SerializedName("file_systems") public static final StorageType FileSystems
    • Indexeddb

      @SerializedName("indexeddb") public static final StorageType Indexeddb
    • LocalStorage

      @SerializedName("local_storage") public static final StorageType LocalStorage
    • ShaderCache

      @SerializedName("shader_cache") public static final StorageType ShaderCache
    • Websql

      @SerializedName("websql") public static final StorageType Websql
    • ServiceWorkers

      @SerializedName("service_workers") public static final StorageType ServiceWorkers
    • CacheStorage

      @SerializedName("cache_storage") public static final StorageType CacheStorage
    • InterestGroups

      @SerializedName("interest_groups") public static final StorageType InterestGroups
    • All

      @SerializedName("all") public static final StorageType All
    • Other

      @SerializedName("other") public static final StorageType Other
    • _UNKNOWN_

      public static final StorageType _UNKNOWN_
  • Field Details

    • value

      public final String value
  • Method Details

    • values

      public static StorageType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static StorageType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<StorageType>