Enum Class ServiceType

java.lang.Object
java.lang.Enum<ServiceType>
com.couchbase.client.dcp.core.service.ServiceType
All Implemented Interfaces:
Serializable, Comparable<ServiceType>, java.lang.constant.Constable

public enum ServiceType extends Enum<ServiceType>
Represents the different ServiceTypes and how they map onto buckets.
  • Enum Constant Details

    • VIEWS

      public static final ServiceType VIEWS
      Views and Design Documents.
    • KV

      public static final ServiceType KV
      Key/Value type operations.
    • QUERY

      public static final ServiceType QUERY
      Query (N1QL) operations.
    • MANAGER

      public static final ServiceType MANAGER
      The Cluster Manager service ("ns server")
    • ANALYTICS

      public static final ServiceType ANALYTICS
      Analytics operations.
    • EVENTING

      public static final ServiceType EVENTING
      The Eventing (function) service.
    • BACKUP

      public static final ServiceType BACKUP
      The Backup service
  • Method Details

    • values

      public static ServiceType[] 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 ServiceType 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
    • scope

      public ServiceScope scope()