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

me.pagar.CaptureMethod Maven / Gradle / Ivy

The newest version!
package me.pagar;

public enum CaptureMethod {
    
    ecommerce("ecommerce"),
    emv("emv"),
    magstripe("magstripe");
    
    private String method;

    private CaptureMethod(String method) {
            this.method = method;
    }

    @Override
    public String toString() {
            return method;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy