All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pitest.sequence.Slot Maven / Gradle / Ivy

The newest version!
package org.pitest.sequence;

import java.util.List;
import java.util.Set;

public final class Slot {
    public static  Slot create(Class clazz) {
        return new Slot<>();
    }

    public static  Slot> createList(Class clazz) {
        return new Slot<>();
    }

    public static  Slot> createSet(Class clazz) {
        return new Slot<>();
    }

    public SlotWrite write() {
        return new SlotWrite<>(this);
    }

    public SlotRead read() {
        return new SlotRead<>(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy