com.almondtools.testrecorder.SerializedCollectionVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testrecorder Show documentation
Show all versions of testrecorder Show documentation
Recording test data from running program.
The newest version!
package com.almondtools.testrecorder;
import com.almondtools.testrecorder.values.SerializedList;
import com.almondtools.testrecorder.values.SerializedMap;
import com.almondtools.testrecorder.values.SerializedSet;
public interface SerializedCollectionVisitor extends SerializedValueVisitor {
T visitList(SerializedList value);
T visitSet(SerializedSet value);
T visitMap(SerializedMap value);
@SuppressWarnings({ "rawtypes", "unchecked" })
static Class> extend(SerializedValueVisitor visitor) {
return (Class) SerializedCollectionVisitor.class;
}
}