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

com.vwo.enums.GoalEnum Maven / Gradle / Ivy

There is a newer version: 1.66.0
Show newest version
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