Enum Span.Kind

java.lang.Object
java.lang.Enum<Span.Kind>
io.opencensus.trace.Span.Kind
All Implemented Interfaces:
Serializable, Comparable<Span.Kind>
Enclosing class:
Span

public static enum Span.Kind extends Enum<Span.Kind>
Type of span. Can be used to specify additional relationships between spans in addition to a parent/child relationship.
Since:
0.14
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Indicates that the span covers the client-side wrapper around an RPC or other remote request.
    Indicates that the span covers server-side handling of an RPC or other remote request.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static Span.Kind
    Returns the enum constant of this type with the specified name.
    static Span.Kind[]
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • SERVER

      public static final Span.Kind SERVER
      Indicates that the span covers server-side handling of an RPC or other remote request.
      Since:
      0.14
    • CLIENT

      public static final Span.Kind CLIENT
      Indicates that the span covers the client-side wrapper around an RPC or other remote request.
      Since:
      0.14
  • Constructor Details

    • Kind

      private Kind()
  • Method Details

    • values

      public static Span.Kind[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Span.Kind valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null