com.vwo.enums.GoalEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vwo-java-sdk Show documentation
Show all versions of vwo-java-sdk Show documentation
Java library to initiate VWo instance for server side a/b testing
package com.vwo.enums;
public class GoalEnum {
public enum GOAL_TYPES {
REVENUE("REVENUE_TRACKING"),
CUSTOM("CUSTOM_GOAL");
private final String type;
GOAL_TYPES(String type) {
this.type = type;
}
public String value() {
return this.type;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy