org.vfdtech.enums.CBACommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utilities-and-generic-tools Show documentation
Show all versions of utilities-and-generic-tools Show documentation
A utilities service with generic tools implementation. Can be
plugged into your java project
package org.vfdtech.enums;
public enum CBACommand {
HOLD_AMOUNT("holdAmount"),
RELEASE_AMOUNT("releaseAmount"),
BLOCK("block"),
UNBLOCK("unblock");
private final String text;
private CBACommand(String text) {
this.text = text;
}
public String getText() {
return text;
}
}