All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.chrome.devtools.client.core.network.ResourcePriority Maven / Gradle / Ivy

package com.hubspot.chrome.devtools.client.core.network;

import com.fasterxml.jackson.annotation.JsonValue;

/**
 * Loading priority of a resource request.
 */
public enum ResourcePriority {
  VERY_LOW("VeryLow"),

  LOW("Low"),

  MEDIUM("Medium"),

  HIGH("High"),

  VERY_HIGH("VeryHigh");

  private final String value;

  ResourcePriority(String value) {
    this.value= value;
  }

  @JsonValue
  public String getValue() {
    return value;
  }

  @Override
  public String toString() {
    return value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy