Enum Class HttpPart

java.lang.Object
java.lang.Enum<HttpPart>
net.bull.javamelody.internal.common.HttpPart
All Implemented Interfaces:
Serializable, Comparable<HttpPart>, java.lang.constant.Constable

public enum HttpPart extends Enum<HttpPart>
Enumération des valeurs pour le paramètre "part" dans les requêtes http.
Author:
Emeric Vernat
  • Enum Constant Details

    • HEAP_HISTO

      public static final HttpPart HEAP_HISTO
    • PROCESSES

      public static final HttpPart PROCESSES
    • CURRENT_REQUESTS

      public static final HttpPart CURRENT_REQUESTS
    • DEFAULT_WITH_CURRENT_REQUESTS

      public static final HttpPart DEFAULT_WITH_CURRENT_REQUESTS
    • WEB_XML

      public static final HttpPart WEB_XML
    • POM_XML

      public static final HttpPart POM_XML
    • JNLP

      public static final HttpPart JNLP
    • JVM

      public static final HttpPart JVM
    • SESSIONS

      public static final HttpPart SESSIONS
    • HOTSPOTS

      public static final HttpPart HOTSPOTS
    • DATABASE

      public static final HttpPart DATABASE
    • CONNECTIONS

      public static final HttpPart CONNECTIONS
    • GRAPH

      public static final HttpPart GRAPH
    • LAST_VALUE

      public static final HttpPart LAST_VALUE
    • USAGES

      public static final HttpPart USAGES
    • JNDI

      public static final HttpPart JNDI
    • MBEANS

      public static final HttpPart MBEANS
    • CRASHES

      public static final HttpPart CRASHES
    • THREADS

      public static final HttpPart THREADS
    • THREADS_DUMP

      public static final HttpPart THREADS_DUMP
    • COUNTER_SUMMARY_PER_CLASS

      public static final HttpPart COUNTER_SUMMARY_PER_CLASS
    • RUNTIME_DEPENDENCIES

      public static final HttpPart RUNTIME_DEPENDENCIES
    • JROBINS

      public static final HttpPart JROBINS
    • OTHER_JROBINS

      public static final HttpPart OTHER_JROBINS
    • EXPLAIN_PLAN

      public static final HttpPart EXPLAIN_PLAN
    • APPLICATIONS

      public static final HttpPart APPLICATIONS
    • SOURCE

      public static final HttpPart SOURCE
    • DEPENDENCIES

      public static final HttpPart DEPENDENCIES
    • SPRING_BEANS

      public static final HttpPart SPRING_BEANS
    • RUM

      public static final HttpPart RUM
    • WEBAPP_VERSIONS

      public static final HttpPart WEBAPP_VERSIONS
    • CACHE_KEYS

      public static final HttpPart CACHE_KEYS
    • JCACHE_KEYS

      public static final HttpPart JCACHE_KEYS
    • HASH_PASSWORD

      public static final HttpPart HASH_PASSWORD
  • Method Details

    • values

      public static HttpPart[] 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 HttpPart 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
    • isPart

      public boolean isPart(HttpServletRequest request)
    • getName

      public String getName()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<HttpPart>
    • getByName

      public static HttpPart getByName(String name)