Package net.ontopia.topicmaps.impl.rdbms
Class ParameterArray
- java.lang.Object
-
- net.ontopia.topicmaps.impl.rdbms.ParameterArray
-
- All Implemented Interfaces:
Externalizable
,Serializable
public class ParameterArray extends Object implements Externalizable
INTERNAL: Object wrapper class for query parameter array. This wrapper class is purely used to make it possible to use arrays as map keys.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParameterArray()
ParameterArray(Object[] params)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
boolean
equals(Object other)
Object[]
getArray()
int
hashCode()
void
readExternal(ObjectInput in)
String
toString()
void
writeExternal(ObjectOutput out)
-
-
-
Field Detail
-
params
protected Object[] params
-
-
Constructor Detail
-
ParameterArray
public ParameterArray()
-
ParameterArray
public ParameterArray(Object[] params)
-
-
Method Detail
-
getArray
public Object[] getArray()
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternal
in interfaceExternalizable
- Throws:
IOException
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Specified by:
readExternal
in interfaceExternalizable
- Throws:
IOException
ClassNotFoundException
-
-