Package com.collabnet.ce.soap60.types
Class SoapNamedValues
java.lang.Object
com.collabnet.ce.soap60.types.SoapNamedValues
Represents named values for SOAP. For multi-select fields, the name is repeated for each value set.
For example, for a multi-select field named days_of_week where MWF are set,
getNames() returns {"days_of_week", "days_of_week", "days_of_week"} and
getValues() returns {"Monday", "Wednesday", "Friday"} }.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
Equals for comparisonsString[]
getNames()
Returns array of names.String[]
Returns array of values.int
hashCode()
Use parent hashcodestatic void
registerTypeMappings
(org.apache.axis.client.Call call) Register this SOAP type for Axis.void
Sets array of names.void
Sets array of values.
-
Constructor Details
-
SoapNamedValues
public SoapNamedValues()
-
-
Method Details
-
getNames
Returns array of names.- Returns:
- Name array.
-
setNames
Sets array of names.- Parameters:
names
- Name array.
-
getValues
Returns array of values.- Returns:
- Value array.
-
setValues
Sets array of values.- Parameters:
values
- Value arrays.
-
registerTypeMappings
public static void registerTypeMappings(org.apache.axis.client.Call call) Register this SOAP type for Axis.- Parameters:
call
- Axis call object.
-
equals
Equals for comparisons -
hashCode
public int hashCode()Use parent hashcode
-