protected TupleSerializer<Tuple3<Integer, Long, Double>> createSerializer() {
return new TupleSerializer<Tuple3<Integer, Long, Double>>(
(Class<Tuple3<Integer, Long, Double>>) (Class<?>) Tuple3.class,
new TypeSerializer[]{
new IntSerializer(),
new LongSerializer(),
new DoubleSerializer()});
}