Enum Class ReferenceDocs

java.lang.Object
java.lang.Enum<ReferenceDocs>
org.elasticsearch.common.ReferenceDocs
All Implemented Interfaces:
Serializable, Comparable<ReferenceDocs>, Constable

public enum ReferenceDocs extends Enum<ReferenceDocs>
Encapsulates links to pages in the reference docs, so that for example we can include URLs in logs and API outputs. Each instance's toString() yields (a string representation of) a URL for the relevant docs. Links are defined in the resource file reference-docs-links.json which must include definitions for exactly the set of values of this enum.
  • Enum Constant Details

    • INITIAL_MASTER_NODES

      public static final ReferenceDocs INITIAL_MASTER_NODES
    • DISCOVERY_TROUBLESHOOTING

      public static final ReferenceDocs DISCOVERY_TROUBLESHOOTING
    • UNSTABLE_CLUSTER_TROUBLESHOOTING

      public static final ReferenceDocs UNSTABLE_CLUSTER_TROUBLESHOOTING
    • LAGGING_NODE_TROUBLESHOOTING

      public static final ReferenceDocs LAGGING_NODE_TROUBLESHOOTING
    • SHARD_LOCK_TROUBLESHOOTING

      public static final ReferenceDocs SHARD_LOCK_TROUBLESHOOTING
    • CONCURRENT_REPOSITORY_WRITERS

      public static final ReferenceDocs CONCURRENT_REPOSITORY_WRITERS
    • ARCHIVE_INDICES

      public static final ReferenceDocs ARCHIVE_INDICES
    • HTTP_TRACER

      public static final ReferenceDocs HTTP_TRACER
    • LOGGING

      public static final ReferenceDocs LOGGING
    • BOOTSTRAP_CHECK_HEAP_SIZE

      public static final ReferenceDocs BOOTSTRAP_CHECK_HEAP_SIZE
    • BOOTSTRAP_CHECK_FILE_DESCRIPTOR

      public static final ReferenceDocs BOOTSTRAP_CHECK_FILE_DESCRIPTOR
    • BOOTSTRAP_CHECK_MEMORY_LOCK

      public static final ReferenceDocs BOOTSTRAP_CHECK_MEMORY_LOCK
    • BOOTSTRAP_CHECK_MAX_NUMBER_THREADS

      public static final ReferenceDocs BOOTSTRAP_CHECK_MAX_NUMBER_THREADS
    • BOOTSTRAP_CHECK_MAX_FILE_SIZE

      public static final ReferenceDocs BOOTSTRAP_CHECK_MAX_FILE_SIZE
    • BOOTSTRAP_CHECK_MAX_SIZE_VIRTUAL_MEMORY

      public static final ReferenceDocs BOOTSTRAP_CHECK_MAX_SIZE_VIRTUAL_MEMORY
    • BOOTSTRAP_CHECK_MAXIMUM_MAP_COUNT

      public static final ReferenceDocs BOOTSTRAP_CHECK_MAXIMUM_MAP_COUNT
    • BOOTSTRAP_CHECK_CLIENT_JVM

      public static final ReferenceDocs BOOTSTRAP_CHECK_CLIENT_JVM
    • BOOTSTRAP_CHECK_USE_SERIAL_COLLECTOR

      public static final ReferenceDocs BOOTSTRAP_CHECK_USE_SERIAL_COLLECTOR
    • BOOTSTRAP_CHECK_SYSTEM_CALL_FILTER

      public static final ReferenceDocs BOOTSTRAP_CHECK_SYSTEM_CALL_FILTER
    • BOOTSTRAP_CHECK_ONERROR_AND_ONOUTOFMEMORYERROR

      public static final ReferenceDocs BOOTSTRAP_CHECK_ONERROR_AND_ONOUTOFMEMORYERROR
    • BOOTSTRAP_CHECK_EARLY_ACCESS

      public static final ReferenceDocs BOOTSTRAP_CHECK_EARLY_ACCESS
    • BOOTSTRAP_CHECK_G1GC

      public static final ReferenceDocs BOOTSTRAP_CHECK_G1GC
    • BOOTSTRAP_CHECK_ALL_PERMISSION

      public static final ReferenceDocs BOOTSTRAP_CHECK_ALL_PERMISSION
    • BOOTSTRAP_CHECK_DISCOVERY_CONFIGURATION

      public static final ReferenceDocs BOOTSTRAP_CHECK_DISCOVERY_CONFIGURATION
    • BOOTSTRAP_CHECKS

      public static final ReferenceDocs BOOTSTRAP_CHECKS
    • BOOTSTRAP_CHECK_ENCRYPT_SENSITIVE_DATA

      public static final ReferenceDocs BOOTSTRAP_CHECK_ENCRYPT_SENSITIVE_DATA
    • BOOTSTRAP_CHECK_PKI_REALM

      public static final ReferenceDocs BOOTSTRAP_CHECK_PKI_REALM
    • BOOTSTRAP_CHECK_ROLE_MAPPINGS

      public static final ReferenceDocs BOOTSTRAP_CHECK_ROLE_MAPPINGS
    • BOOTSTRAP_CHECK_TLS

      public static final ReferenceDocs BOOTSTRAP_CHECK_TLS
    • BOOTSTRAP_CHECK_TOKEN_SSL

      public static final ReferenceDocs BOOTSTRAP_CHECK_TOKEN_SSL
    • BOOTSTRAP_CHECK_SECURITY_MINIMAL_SETUP

      public static final ReferenceDocs BOOTSTRAP_CHECK_SECURITY_MINIMAL_SETUP
    • CONTACT_SUPPORT

      public static final ReferenceDocs CONTACT_SUPPORT
    • EXECUTABLE_JNA_TMPDIR

      public static final ReferenceDocs EXECUTABLE_JNA_TMPDIR
  • Method Details

    • values

      public static ReferenceDocs[] 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 ReferenceDocs 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<ReferenceDocs>