com.splunk.modularinput
Class MultiValueParameter
java.lang.Object
com.splunk.modularinput.Parameter
com.splunk.modularinput.MultiValueParameter
public class MultiValueParameter
- extends Parameter
The MultiValueParameter
class represents a parameter containing multiple values that is passed as part of a definition
of a modular input instance. MultiValueParameter
objects correspond to XML fragments of the form:
<param_list name="multiValue">
<value>value1</value>
<value>value2</value>
</param_list>
Method Summary |
boolean |
equals(java.lang.Object other)
|
java.lang.String |
getName()
Gets the name of this parameter. |
java.util.List<java.lang.String> |
getValues()
Gets a list of all values of this parameter. |
int |
hashCode()
|
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
getName
public java.lang.String getName()
- Gets the name of this parameter.
- Specified by:
getName
in class Parameter
- Returns:
- The name of this parameter.
getValues
public java.util.List<java.lang.String> getValues()
- Gets a list of all values of this parameter.
- Returns:
- A list of all values of this parameter.
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in class java.lang.Object
hashCode
public int hashCode()
- Overrides:
hashCode
in class java.lang.Object