/** Create an instance of LongIntStringPK.
* @param index the index to use to generate data
* @return the instance
*/
protected LongIntStringIndex createInstance(int index) {
LongIntStringIndex instance = session.newInstance(LongIntStringIndex.class);
instance.setId(index);
instance.setLongix(getPK1(index));
instance.setIntix(getPK2(index));
instance.setStringix(getPK3(index));
instance.setStringvalue(getValue(index));
return instance;
}