Enum Class NodeRole

java.lang.Object
java.lang.Enum<NodeRole>
org.graylog2.indexer.cluster.health.NodeRole
All Implemented Interfaces:
Serializable, Comparable<NodeRole>, Constable

public enum NodeRole extends Enum<NodeRole>
  • Enum Constant Details

    • COORDINATING_ONLY

      public static final NodeRole COORDINATING_ONLY
    • DATA

      public static final NodeRole DATA
    • DATA_COLD

      public static final NodeRole DATA_COLD
    • DATA_CONTENT

      public static final NodeRole DATA_CONTENT
    • DATA_HOT

      public static final NodeRole DATA_HOT
    • DATA_WARM

      public static final NodeRole DATA_WARM
    • FROZEN

      public static final NodeRole FROZEN
    • INGEST

      public static final NodeRole INGEST
    • MACHINE_LEARNING

      public static final NodeRole MACHINE_LEARNING
    • MASTER_ELIGIBLE

      public static final NodeRole MASTER_ELIGIBLE
    • REMOTE_CLUSTER_CLIENT

      public static final NodeRole REMOTE_CLUSTER_CLIENT
    • TRANSFORM

      public static final NodeRole TRANSFORM
    • VOTING_ONLY

      public static final NodeRole VOTING_ONLY
  • Method Details

    • values

      public static NodeRole[] 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 NodeRole 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
    • getSymbol

      public int getSymbol()
    • holdsData

      public boolean holdsData()
    • parseSymbolString

      public static EnumSet<NodeRole> parseSymbolString(String symbols)