module Splunk::Namespace

A mixin that fills the role of an abstract base class.

Namespaces have two methods: is_exact? and to_path_fragment, and can be compared for equality.

Public Instance Methods

is_exact?() click to toggle source

Is this a exact namespace?

Returns: true or false.

# File lib/splunk-sdk-ruby/namespace.rb, line 151
def is_exact?() end
to_path_fragment() click to toggle source

Returns the URL prefix corresponding to this namespace.

The prefix is returned as a list of strings. The strings are not URL encoded. You need to URL encode them when you construct your URL.

Returns: an Array of Strings.

# File lib/splunk-sdk-ruby/namespace.rb, line 162
def to_path_fragment() end